Revit 2026 API
Family |
Identifies whether the symbol is active.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public bool IsActive { get; }
Public ReadOnly Property IsActive As Boolean Get
public: property bool IsActive { bool get (); }
member IsActive : bool with get
Property Value
Boolean
Symbols that are not used in the document may be deactivated to conserve memory and regeneration time.
When the symbol is inactive, its geometry is empty and cannot be accessed.
In order to access the geometry of a symbol that is not active in the document,
the symbol should first be activated by calling Activate.
See Also