Message 1 of 2
Not applicable
07-06-2015
05:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, is technique or method i can use that would allow me identify the views that are located on a viewsheet?
FilteredElementCollector a = new FilteredElementCollector(doc);
a.OfClass(typeof(ViewSheet));
foreach (Element e in a)
{
if (e is ViewSheet)
{
ViewSheet vSheet = (ViewSheet)e;
......................
......................
......................?
}
}Thank you in advance,
Jack
Solved! Go to Solution.