Document.NewFamilyInstance
Inserts a new instance of a family into the document, using a location, type/symbol, the host element and a base level.
This form of NewFamilyInstance is the most commonly used in Autodesk Revit since there are a large number of elements that use levels, such as Walls, Columns etc. If the instance fails to be created an exception may be thrown.
The type/symbol that is used must be loaded into the document before this method is called. Families and their symbols can be loaded using the Document.LoadFamily or Document.LoadFamilySymbol methods.
All levels within the document can be found by iterating over the entire document and searching for objects of type Autodesk.Revit.Elements.Level.
Some Families, such as Beams, have more than one endpoint and are inserted in the same manner as single point instances. Once inserted these linear family instances can have their endpoints changed by using the instance's Element.Location property.
Note: ForbiddenForDynamicUpdateException might be thrown during a dynamic update if the inserted instance establishes a mutual dependency with another structure.
Note: if the created family instance includes nested instances, the API framework will automatically regenerate the document during this method call.
public FamilyInstance NewFamilyInstance(
XYZ location,
FamilySymbol symbol,
Element host,
Level level,
StructuralType structuralType
)
-
locationThe physical location where the instance is to be placed on the specified level.
-
symbolA FamilySymbol object that represents the type of the instance that is to be inserted.
-
hostA host object into which the instance will be embedded
-
levelA Level object that is used as the base level for the object.
-
structuralTypeIf structural then specify the type of the component.
-
Thrown if the family symbol does not exist in the given document.
-
Thrown if the host does not exist in the given document.
-
Thrown if the level does not exist in the given document.
-
Thrown if The symbol is not active.