mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-07 16:38:56 +00:00
添加项目文件。
This commit is contained in:
19
AddInManager/CAddInManagerFaceless.cs
Normal file
19
AddInManager/CAddInManagerFaceless.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
using Autodesk.Revit.Attributes;
|
||||
|
||||
using Autodesk.Revit.DB;
|
||||
using Autodesk.Revit.UI;
|
||||
|
||||
using System;
|
||||
|
||||
namespace AddInManager
|
||||
{
|
||||
[Transaction(TransactionMode.Manual)]
|
||||
public class CAddInManagerFaceless : IExternalCommand
|
||||
{
|
||||
public Result Execute(ExternalCommandData revit, ref string message, ElementSet elements)
|
||||
{
|
||||
return AIM.Instance.ExecuteCommand(revit, ref message, elements, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user