Files
SZ-IFC/IFC_Revit_Interop_VERSION_2018/IFC_Revit_Interop/ZeroDocAvailability.cs

17 lines
360 B
C#
Raw Normal View History

2026-02-23 16:55:57 +08:00
using System;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
namespace IFC_Revit_Interop
{
// Token: 0x02000007 RID: 7
public class ZeroDocAvailability : IExternalCommandAvailability
{
// Token: 0x0600001F RID: 31 RVA: 0x0000384F File Offset: 0x00001A4F
public bool IsCommandAvailable(UIApplication a, CategorySet b)
{
return true;
}
}
}