确定 FamilyInstance 在 View 中是否可见
Determine is a FamilyInstance is visible in a View
我有一个 FamilyInstance pFam
和一个 Autodesk.Revit.DB.View pView
。我想知道 pFam
在 pView
中是否可见。我试过使用
if (pFam.IsHidden(pView)
continue;
不幸的是,这只告诉我该元素是否应该被隐藏,但事实并非如此。但是,该元素在每个 View
中都不可见,在这种情况下,我希望(或者更确切地说不希望)发生某些事情。 FamilyInstance
s 没有 Visible
或 IsVisible
属性...有谁知道处理这些情况的方法吗?
谢谢!
我发现了解元素在视图中是否可见的最可靠方法是使用特定于该视图的 FilteredElementCollector。有许多不同的方法可以控制元素的可见性,因此尝试以任何其他方式确定这一点是不切实际的。
下面是我用来实现这个的实用函数。请注意,这适用于任何元素,而不仅仅是家庭实例。
public static bool IsElementVisibleInView([NotNull] this View view, [NotNull] Element el)
{
if (view == null)
{
throw new ArgumentNullException(nameof(view));
}
if (el == null)
{
throw new ArgumentNullException(nameof(el));
}
// Obtain the element's document
Document doc = el.Document;
ElementId elId = el.Id;
// Create a FilterRule that searches for an element matching the given Id
FilterRule idRule = ParameterFilterRuleFactory.CreateEqualsRule(new ElementId(BuiltInParameter.ID_PARAM), elId);
var idFilter = new ElementParameterFilter(idRule);
// Use an ElementCategoryFilter to speed up the search, as ElementParameterFilter is a slow filter
Category cat = el.Category;
var catFilter = new ElementCategoryFilter(cat.Id);
// Use the constructor of FilteredElementCollector that accepts a view id as a parameter to only search that view
// Also use the WhereElementIsNotElementType filter to eliminate element types
FilteredElementCollector collector =
new FilteredElementCollector(doc, view.Id).WhereElementIsNotElementType().WherePasses(catFilter).WherePasses(idFilter);
// If the collector contains any items, then we know that the element is visible in the given view
return collector.Any();
}
类别过滤器用于在使用较慢的参数过滤器查找所需元素之前消除任何不属于所需类别的元素。巧妙地使用过滤器可能会进一步加快速度,但我发现在实践中它对我来说已经足够快了。
如果您没有 ReSharper,请删除您看到的 [NotNull] 注释。
我有一个 FamilyInstance pFam
和一个 Autodesk.Revit.DB.View pView
。我想知道 pFam
在 pView
中是否可见。我试过使用
if (pFam.IsHidden(pView)
continue;
不幸的是,这只告诉我该元素是否应该被隐藏,但事实并非如此。但是,该元素在每个 View
中都不可见,在这种情况下,我希望(或者更确切地说不希望)发生某些事情。 FamilyInstance
s 没有 Visible
或 IsVisible
属性...有谁知道处理这些情况的方法吗?
谢谢!
我发现了解元素在视图中是否可见的最可靠方法是使用特定于该视图的 FilteredElementCollector。有许多不同的方法可以控制元素的可见性,因此尝试以任何其他方式确定这一点是不切实际的。
下面是我用来实现这个的实用函数。请注意,这适用于任何元素,而不仅仅是家庭实例。
public static bool IsElementVisibleInView([NotNull] this View view, [NotNull] Element el)
{
if (view == null)
{
throw new ArgumentNullException(nameof(view));
}
if (el == null)
{
throw new ArgumentNullException(nameof(el));
}
// Obtain the element's document
Document doc = el.Document;
ElementId elId = el.Id;
// Create a FilterRule that searches for an element matching the given Id
FilterRule idRule = ParameterFilterRuleFactory.CreateEqualsRule(new ElementId(BuiltInParameter.ID_PARAM), elId);
var idFilter = new ElementParameterFilter(idRule);
// Use an ElementCategoryFilter to speed up the search, as ElementParameterFilter is a slow filter
Category cat = el.Category;
var catFilter = new ElementCategoryFilter(cat.Id);
// Use the constructor of FilteredElementCollector that accepts a view id as a parameter to only search that view
// Also use the WhereElementIsNotElementType filter to eliminate element types
FilteredElementCollector collector =
new FilteredElementCollector(doc, view.Id).WhereElementIsNotElementType().WherePasses(catFilter).WherePasses(idFilter);
// If the collector contains any items, then we know that the element is visible in the given view
return collector.Any();
}
类别过滤器用于在使用较慢的参数过滤器查找所需元素之前消除任何不属于所需类别的元素。巧妙地使用过滤器可能会进一步加快速度,但我发现在实践中它对我来说已经足够快了。
如果您没有 ReSharper,请删除您看到的 [NotNull] 注释。