DocumentMakeTransientElements Method |
This method encapsulates the process of creating transient elements in the document.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntaxpublic void MakeTransientElements(
ITransientElementMaker maker
)
Public Sub MakeTransientElements (
maker As ITransientElementMaker
)
public:
void MakeTransientElements(
ITransientElementMaker^ maker
)
member MakeTransientElements :
maker : ITransientElementMaker -> unit
Parameters
- maker ITransientElementMaker
-
An instance of a class that implements the ITransientElementMaker interface.
The maker will be called to create element(s) which would become transient.
Exceptions
Remarks
The method establishes a context within which transient elements will be created and then invokes the given maker object to create the elements. For more information refer to the
IsTransient method.
See Also