17 lines
360 B
C#
17 lines
360 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|