rafl
Mechanical
- May 30, 2011
- 41
Hello
I use the code below to move all the curves to layer.Basically it works as expected, except now I want to exclude thread curves.
How to collect all the dashed thread curves?
I use the code below to move all the curves to layer.Basically it works as expected, except now I want to exclude thread curves.
How to collect all the dashed thread curves?
Code:
Dim displayModification1 As DisplayModification
displayModification1 = Session.GetSession.DisplayManager.NewDisplayModification()
displayModification1.NewLayer = 30
displayModification1.Apply(workPart.Curves.ToArray)
displayModification1.Dispose()