Halasox
Civil/Environmental
- Jun 5, 2016
- 16
Hi,
I have a script which renames a chamfer feature by its values, but as a chamfer has three types I don't know what I would need to add to rename it based on the feature type.
this is what I have and it works fine for symmetrical type.
I have a script which renames a chamfer feature by its values, but as a chamfer has three types I don't know what I would need to add to rename it based on the feature type.
this is what I have and it works fine for symmetrical type.
Code:
Option Strict Off
Imports System
Imports NXOpen
Imports NXOpen.UF
Imports NXOpen.Features
Module ChamferInfo
Sub Main()
Dim s As Session = Session.GetSession()
Dim ufs As UFSession = UFSession.GetUFSession()
Dim lw As ListingWindow = s.ListingWindow
Dim dp As Part = s.Parts.Work
Dim exps() As Expression
Dim expression_name As String = Nothing
Dim featcoll As FeatureCollection = dp.Features
Dim index1 As Integer = 0
lw.Open()
For Each f As Feature In featcoll
'lw.WriteLine("Feature Type: " & f.FeatureType.ToString)
If f.FeatureType = "CHAMFER" Then
exps = f.GetExpressions()
For Each exp As Expression In exps
expression_name = exp.Description
index1 = expression_name.IndexOf("Length")
If dp.PartUnits = BasePart.Units.Inches Then
f.SetName("Chamfer - " & exp.RightHandSide.ToString & " in x 45 deg")
elseif dp.PartUnits = BasePart.Units.Millimeters Then
f.SetName("Chamfer - " & exp.RightHandSide.ToString & " mm x 45 deg")
End If
Next
End If
Next
'Update the work part
dp.ModelingViews.WorkView.Regenerate()
End Sub
Public Function GetUnloadOption(ByVal dummy As String) As Integer
'Unloads the image immediately after execution within NX
GetUnloadOption = NXOpen.Session.LibraryUnloadOption.Immediately
End Function
End Module