Hello! I have a question how to get associativity to each drafting view for each tabular note. I now how that should be for annotations.tablesections type, some code below:
For Each table256 As Tag In thetablenotes256
'this is valid for tabular_note_section_subtype
Dim myTabNote As NXOpen.Annotations.TableSection
Dim point3d As Point3d
Dim origindata As Annotations.Annotation.AssociativeOriginData
Dim origintype As Annotations.AssociativeOriginType
myTabNote = NXObjectManager.Get(table256)
point3d = myTabNote.AnnotationOrigin
origindata = myTabNote.GetAssociativeOrigin(point3d)
origintype = origindata.OriginType.RelativeToView
If myTabNote.HasAssociativeOrigin Then
listofrelative.Add(myTabNote)
End If
But I need to get the similar approach for tabular_note_subtype tags in order to be able to get cell taxt after that.
Does Anybody know how set this up? Would be very appreciate for help.
thanks
E