10 lines
349 B
C#
10 lines
349 B
C#
namespace ShrlAlgo.Toolkit.Revit.Helpers;
|
|
|
|
/// <summary>
|
|
/// 族文档可用
|
|
/// </summary>
|
|
internal class EnableInFamilyDocument : IExternalCommandAvailability
|
|
{
|
|
public bool IsCommandAvailable(UIApplication applicationData, CategorySet selectedCategories) =>
|
|
applicationData.ActiveUIDocument?.Document.IsFamilyDocument == true;
|
|
} |