I was wondering if it is possible to have the NX Journal "selection mask array" filter by color. Or is there another function that is needed to perform the color filter in the code.
This is the selection mask portion of my code:
Dim selectionMask_array(1) As Selection.MaskTriple...
I was wondering how to have the NX Journal selection mask array select all curves including lines and splines. So far If I use
.Type = UFConstants.UF_line_type
or
.Type = UFConstants.UF_spline_type
I can filter for either a line or a spline. But I would like to filter for all curves...
thread561-276765
When you use the feature Information->Object-> and you select a point you're able to see the reference name for the point, i.e. Point(1) or Point (2) depending on when it was created. Is there a way to retrieve this property in a Journal.
I'm using the code below to select and change the color of a face that I created using the "Ruled" feature. I was wondering if it's possible to obtain the "RULED(545)" name from using a function such as object.tag, but 'tag' only returns the tag number not the RULED number.
This is the coded...