- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to to set filters for circles & lines in model space, but it's not selecting either. Can anyone see what I'm doing wrong? Thanks...
Dim ssName As String
Dim FilterType(2) As Int16
Dim FilterData(2) As Object
Dim objSS As AcadSelectionSet = Nothing
ssName = "MySet"
FilterType(0) = 0
FilterData(0) = "Circle"
FilterType(1) = 0
FilterData(1) = "Line"
FilterType(2) = 67
FilterData(2) = "0"
objSS = acadDoc.SelectionSets.Add(ssName)
objSS.Clear()
objSS.SelectOnScreen(FilterType, FilterData)
objSS.Highlight(True)
Solved! Go to Solution.
Link copied