2025-04-24 20:56:44 +08:00
|
|
|
|
using Autodesk.Revit.Attributes;
|
2024-10-27 00:19:48 +08:00
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
2025-04-24 20:56:44 +08:00
|
|
|
|
using ShrlAlgoToolkit.RevitAddins.Assists;
|
2024-10-27 00:19:48 +08:00
|
|
|
|
|
2025-04-24 20:56:44 +08:00
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvMEP;
|
2024-10-27 00:19:48 +08:00
|
|
|
|
|
|
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
|
|
|
|
internal class ArrangeMEPCurveCmd : ExternalCommand
|
2024-10-08 16:21:39 +08:00
|
|
|
|
{
|
2024-10-27 00:19:48 +08:00
|
|
|
|
public override void Execute()
|
|
|
|
|
|
{
|
|
|
|
|
|
WinDialogHelper.ShowModeless<ArrangeMEPCurveView>(new ArrangeMEPCurveViewModel());
|
|
|
|
|
|
}
|
2024-10-08 16:21:39 +08:00
|
|
|
|
}
|