Example:Application-Level Macro in C#
In the IDE, in the main window for the ThisApplication.cs source code, you can now enter your macro code.
For example, here is the
MyFirstMacroAppCS
method in C#:
public void MyFirstMacroAppCS()
{
Autodesk.Revit.Geometry.XYZ baseVec = this.Create.NewXYZ(1.0, 0.0, 0.0);
Autodesk.Revit.Geometry.XYZ upVec = this.Create.NewXYZ(0.0, 0.0, 1.0);
Autodesk.Revit.Geometry.XYZ origin = this.Create.NewXYZ(0.0, 0.0, 0.0);
Autodesk.Revit.Enums.TextAlignFlags align =
Autodesk.Revit.Enums.TextAlignFlags.TEF_ALIGN_LEFT |
Autodesk.Revit.Enums.TextAlignFlags.TEF_ALIGN_TOP;
string strText = "My First Macro, App level, C#!";
double lineWidth = 4.0 / 12.0;
View pView = this.ActiveDocument.ActiveView;
this.ActiveDocument.Create.NewTextNote(pView, origin, baseVec, upVec, lineWidth, align,
strText);
}
In the example, the Revit API Geometry.XYZ class is used to define a position (with X, Y, Z coordinates) for
a Text Note that the macro will add to the active view of the active document.
For now, you can skip any implementation of the startup and shutdown methods.
In your Revit VSTA IDE session, you can copy and paste the code snippet shown previously and insert it
into your macro's method. After pasting the code from this documentation, check that no special characters
were added.
Build Macros in the Revit VSTA IDE
In the Revit VSTA IDE, select the Build option from the toolbar menu:
1348 | Chapter 24 Creating Macros with Revit VSTA
Summary of Contents for 24000-000000-9860 - Revit Architecture - PC
Page 1: ...Revit Architecture 2009 User s Guide April 2008 240A1 050000 PM02A ...
Page 4: ......
Page 56: ...18 ...
Page 116: ...78 Chapter 3 Revit Essentials ...
Page 172: ...134 Chapter 4 ProjectViews ...
Page 178: ...Schedule with Grid Lines Schedule with Grid Lines and an Outline 140 Chapter 4 ProjectViews ...
Page 554: ...516 ...
Page 739: ...Curtain wall Curtain Grid Curtain Walls Curtain Grids and Mullions 701 ...
Page 1004: ...966 ...
Page 1136: ...1098 ...
Page 1226: ...1188 ...
Page 1250: ...1212 ...
Page 1276: ...1238 Chapter 20 Design Options ...
Page 1310: ...1272 ...
Page 1366: ...1328 ...
Page 1406: ...1368 ...