Sparx Systems Forum
Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: philchudley 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
-
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,
-
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
-
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!