14 lines
336 B
C#
14 lines
336 B
C#
using Autodesk.Revit.Attributes;
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges;
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
public class MetroGaugesCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
new GaugesModelView(UiApplication).ShowDialog();
|
|
}
|
|
}
|