- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Now I am making a function that select entities with some values(objectid...).
For example after I get closed polyline, I save it to Entity list.
When I want to see that polyline I select a button.
Just that moment every Entity list item should be selected.
Could someone can help me?
List<Entity> entlist = new List<Entity>();
foreach (Polyline wpl in Plugin.awindowpline)
{
entlist.Add(wpl);
}
Solved! Go to Solution.
Link copied