Files

20 lines
465 B
C#
Raw Permalink Normal View History

2026-02-23 14:58:05 +08:00
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System;
namespace HYDragCurveJig
{
[Regeneration(0)]
[Transaction(TransactionMode.Manual)]
public class CmdTestJig : IExternalCommand
{
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
new TestJigControler(commandData).Test(ref message);
return 0;
}
}
}