Revit API获取OST_Viewers和OST_Level类型的坐标

时间:2012-09-07 19:55:28

标签: c# revit revit-api

我需要查找OST_ViewersOST_Level类型的坐标。我用这段代码得到它们:

var vieversCollection = 
  new FilteredElementCollector(uiDoc.Document)
    .OfCategory(BuiltInCategory.OST_Viewers);

var levelsCollection = 
  new FilteredElementCollector(uiDoc.Document,)
    .OfCategory(BuiltInCategory.OST_Levels);

我尝试将Location属性用于它们,并将其转换为LocationPoint,但它始终返回null。 我应该使用什么方法进行坐标?

0 个答案:

没有答案