FedaykinHandler
Mechanical
- Dec 8, 2013
- 12
Hi, i wonder if there is a way to make the planes start at number one or a specified number when using them again? =)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub CATMain()
Set partDocument1 = CATIA.ActiveDocument
Set selection1 = partDocument1.Selection
selection1.Search "Name= Plane*,all"
oCount = selection1.Count2
For i = 1 To oCount
selection1.Item2(i).Value.Name = "Plane." & i
Next
End Sub