Filtering Polylines

Filtering Polylines

Anonymous
Not applicable
569 Views
2 Replies
Message 1 of 3

Filtering Polylines

Anonymous
Not applicable
The following code filters all lines and works well.



Dim FilterType(0) As Int16

Dim FilterData(0) As Object

SelSet = app.ActiveDocument.SelectionSets.Add("New selection")

FilterType(0) = 0

FilterData(0) = "Line"

SelSet.Select(Interop.Common.AcSelect.acSelectionSetAll, , , FilterType,
FilterData)



But I failed to filter polylines with

FilterData(0) = "Polyline"



Who can help me?
0 Likes
570 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
what kind of Polylines are you looking for?
"Polyline" should get you 3DPolylines. "LWPolyline"
might be what you want.?

"technosterone" wrote in message
news:4893723@discussion.autodesk.com...
The following code filters all lines and works well.



Dim FilterType(0) As Int16

Dim FilterData(0) As Object

SelSet = app.ActiveDocument.SelectionSets.Add("New selection")

FilterType(0) = 0

FilterData(0) = "Line"

SelSet.Select(Interop.Common.AcSelect.acSelectionSetAll, , , FilterType,
FilterData)



But I failed to filter polylines with

FilterData(0) = "Polyline"



Who can help me?
0 Likes
Message 3 of 3

Anonymous
Not applicable
Yes, Paul, "LWPolyline" is what I needed.
As far as I can see the question is wider, where can I get a full set of
strings that represent Object Type?
"Line", "Circle", "Arc", "LWPolyline", ...
0 Likes