Files
RevitSdkSamples/snapshot/2010/SDK_rtm/Samples/RvtSamples/CS/Command1.cs
T
2024-12-12 09:51:40 +01:00

18 lines
324 B
C#

using System;
using Autodesk.Revit;
namespace RvtSamples
{
class Command : IExternalCommand
{
public IExternalCommand.Result Execute(
ExternalCommandData commandData,
ref string message,
ElementSet elements )
{
string filename = Application.Filename;
}
}
}