mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-09-19 18:48:48 +00:00
18 lines
324 B
C#
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;
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|