How do I loop through parallelism and surface finish annotations in NXOpen?
How do I loop through parallelism and surface finish annotations in NXOpen?
(OP)
Hi,
I've just started NXOpen coding through VB and I managed to loop through the dimensions and extract tolerances using
For Each temp_dimension as Annotations.Dimension in workPart.Dimensions
However, I see that the parallelism constraint as well as surface finish detail do not appear in these. What do I need to loop through to access all of those notations as well as the textual annotations in a drawing?
I've just started NXOpen coding through VB and I managed to loop through the dimensions and extract tolerances using
For Each temp_dimension as Annotations.Dimension in workPart.Dimensions
However, I see that the parallelism constraint as well as surface finish detail do not appear in these. What do I need to loop through to access all of those notations as well as the textual annotations in a drawing?





RE: How do I loop through parallelism and surface finish annotations in NXOpen?
{part}.Annotation.DraftingSurfaceFinishSymbols
{part}.Notes
You will find many collections within the Annotation manager of the part; such as ID symbols, custom symbols, centerlines, etc.
www.nxjournaling.com
RE: How do I loop through parallelism and surface finish annotations in NXOpen?