Author Topic: Navigation Cell Hyperlink Property  (Read 6523 times)

philchudley

  • EA User
  • **
  • Posts: 736
  • Karma: +20/-0
  • UML/EA Principal Consultant / Trainer
    • View Profile
Navigation Cell Hyperlink Property
« on: February 21, 2024, 10:58:56 pm »
This is a long shot, but does anyone out there know where in the repository database are the details of the Navigation Cell Hyperlink property is stored?

I cannot find it anywhere ... its not t_xref

I would like to know for an add-in I am creating which needs to manipulate Navigation Cells.

I have found that the ID of the diagram the Navigation Cell links to is held in the PDATA1 field of the t_object table for the Navigation Cell entry. But this is not the complete picture.

Phil
follow me on Twitter

@SparxEAGuru

Takeshi K

  • EA User
  • **
  • Posts: 562
  • Karma: +35/-1
    • View Profile
Re: Navigation Cell Hyperlink Property
« Reply #1 on: February 22, 2024, 10:36:04 am »
Hello Phil,

In the t_object, StyleEx has its image (icon) information and Alias has its display name. And we need to set Ntype (Subtype) to 82.

Maybe there are all about the Navigation cells, so there is no other information in other tables.

HTH,
--
t-kouno

philchudley

  • EA User
  • **
  • Posts: 736
  • Karma: +20/-0
  • UML/EA Principal Consultant / Trainer
    • View Profile
Re: Navigation Cell Hyperlink Property
« Reply #2 on: February 24, 2024, 12:59:44 am »
Thanks

I have solved my own problem  :)

The ID of the navigation cell linked diagram ID is in PDATA1, but this must be stored as an Int32 and then everything works just fine!

Phil
follow me on Twitter

@SparxEAGuru

PDC

  • EA User
  • **
  • Posts: 89
  • Karma: +4/-0
  • Systems Engineer
    • View Profile
Re: Navigation Cell Hyperlink Property
« Reply #3 on: February 26, 2024, 07:56:32 pm »
I have solved my own problem  :)

The ID of the navigation cell linked diagram ID is in PDATA1, but this must be stored as an Int32 and then everything works just fine!

Thanks for sharing!
Phil