10 lines
433 B
C#
10 lines
433 B
C#
|
|
namespace ShrlAlgo.Toolkit.Revit.Helpers;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 命令在剖面、立面可用
|
|||
|
|
/// </summary>
|
|||
|
|
internal class EnableInViewSection : IExternalCommandAvailability
|
|||
|
|
{
|
|||
|
|
public bool IsCommandAvailable(UIApplication applicationData, CategorySet selectedCategories) =>
|
|||
|
|
applicationData.ActiveUIDocument?.Document.IsFamilyDocument == false && applicationData.ActiveUIDocument.Document.ActiveView is ViewSection;
|
|||
|
|
}
|