13 lines
454 B
C#
13 lines
454 B
C#
|
|
namespace ShrlAlgo.Toolkit.Revit.Helpers;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 命令在平面视图可用
|
|||
|
|
/// </summary>
|
|||
|
|
public class EnableInViewPlan : IExternalCommandAvailability
|
|||
|
|
{
|
|||
|
|
public bool IsCommandAvailable(UIApplication applicationData, CategorySet selectedCategories)
|
|||
|
|
{
|
|||
|
|
return applicationData.ActiveUIDocument?.Document.ActiveView is ViewPlan
|
|||
|
|
&& applicationData.ActiveUIDocument?.Document.IsFamilyDocument == false;
|
|||
|
|
}
|
|||
|
|
}
|