.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Filtering Polylines

2 REPLIES 2
Reply
Message 1 of 3
Anonymous
409 Views, 2 Replies

Filtering Polylines

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?
2 REPLIES 2
Message 2 of 3
Anonymous
in reply to: Anonymous

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?
Message 3 of 3
Anonymous
in reply to: Anonymous

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", ...

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost