20 lines
465 B
C#
20 lines
465 B
C#
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;
|
|
}
|
|
}
|
|
}
|