24 lines
516 B
C#
24 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Autodesk.Revit.Attributes;
|
|
|
|
using Nice3point.Revit.Toolkit.External;
|
|
|
|
|
|
namespace Sai.RvKits.RvMEP
|
|
{
|
|
[Transaction(TransactionMode.Manual)]
|
|
[Regeneration(RegenerationOption.Manual)]
|
|
class RotateInstanceCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
WinDialogHelper.ShowModeless<RotateMEPView>(new RotateMEPViewModel());
|
|
}
|
|
}
|
|
}
|