10 lines
418 B
C#
10 lines
418 B
C#
|
|
namespace ShrlAlgo.Toolkit.Revit.Helpers;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图纸视图可用
|
|||
|
|
/// </summary>
|
|||
|
|
internal class EnableInViewSheet : IExternalCommandAvailability
|
|||
|
|
{
|
|||
|
|
public bool IsCommandAvailable(UIApplication applicationData, CategorySet selectedCategories) =>
|
|||
|
|
applicationData.ActiveUIDocument?.Document.ActiveView is ViewSheet && applicationData.ActiveUIDocument?.Document.IsFamilyDocument == false;
|
|||
|
|
}
|