添加项目文件。
This commit is contained in:
19
HYDragCurveJigPro/CmdTestJig.cs
Normal file
19
HYDragCurveJigPro/CmdTestJig.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user