© 2010 Autodesk
Introduction to Revit 2011 API
ModelCreation.PNG
Model Creation
Create Instances of  Revit Elements
§Create a new geometry element:
§Application.Create.NewXxx() e.g., NewLineBound()
§Create a new model element:
§Document.Create.NewXxx() e.g., NewWall(), NewFamilyInstance()
§
§Multiple overloaded methods, each for a specific condition and/or apply only certain types of elements.
§e.g., 5 NewWall(), 9 NewFamilyInstance()
§cf. Dev Guide p177
§