Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, I am looking for an NXopen vb to check the number of flat pattern

Status
Not open for further replies.

PSI-CAD

Computer
Feb 13, 2009
997
Hi,
I am looking for an NXopen vb code to check the number of flat pattern
TIA

Regards
Didier Psaltopoulos
 
Replies continue below

Recommended for you

To check the number of flat pattern holes ?

Jerry J.
UGV5-NX1899
 
In fact, it's so simple

Dim j As Integer
j = 0
For Each primitives As Features.Feature In workPart.Features
'lw.WriteLine(primitives.FeatureType.ToString)
If primitives.FeatureType.ToString = "FLAT_PATTERN" Then
j = j + 1
End If
Next

Regards
Didier Psaltopoulos
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor