BRepBuilderGeometryId Class

This class is used by the BRepBuilder class to identify objects it creates (faces, edges, etc.).
Inheritance Hierarchy
SystemObject
  Autodesk.Revit.DBBRepBuilderGeometryId

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public class BRepBuilderGeometryId : IDisposable

The BRepBuilderGeometryId type exposes the following members.

Constructors
 NameDescription
Public methodBRepBuilderGeometryId Copy constructor
Top
Properties
 NameDescription
Public propertyIsValidObject Specifies whether the .NET object represents a valid Revit entity.
Top
Methods
 NameDescription
Public methodDisposeReleases all resources used by the BRepBuilderGeometryId
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodStatic memberInvalidGeometryId Returns an invalid BRepBuilderGeometryId, used as a return value to indicate an error.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
The user should use these ids to organize the calls to BRepBuilder methods (e.g., addLoop() takes a face id as input, referring to a face that was previously added by a call to AddFace()). The ids are only valid while the BRepBuilder is in use.
See Also