21 lines
382 B
C#
21 lines
382 B
C#
|
|
using Autodesk.Revit.Attributes;
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
namespace Szmedi.RvKits.MEPTools;
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
internal class ArrangeMEPCurveCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
WinDialogAssists.ShowOrActivate<ArrangeMEPCurveView, ArrangeMEPCurveViewModel>();
|
|
|
|
}
|
|
}
|