Message 1 of 3
Filtering Polylines
Not applicable
07-06-2005
07:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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?
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?