nathangaldamez
New member
- Jul 13, 2011
- 15
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.
--------------------------------------------------------------
This is the selection mask portion of my code:
Dim selectionMask_array(1) As Selection.MaskTriple
With selectionMask_array(0)
.Type = UFConstants.UF_line_type
.Type = 1
.Subtype = 0
.SolidBodySubtype = 0
End With
.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.
--------------------------------------------------------------
This is the selection mask portion of my code:
Dim selectionMask_array(1) As Selection.MaskTriple
With selectionMask_array(0)
.Type = UFConstants.UF_line_type
.Type = 1
.Subtype = 0
.SolidBodySubtype = 0
End With