GetRegionEnvelope Method


Gets the envelope that a specified region spans.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public BoundingBoxUV GetRegionEnvelope(
	int regionId
)
Visual Basic
Public Function GetRegionEnvelope ( _
	regionId As Integer _
) As BoundingBoxUV
Visual C++
public:
BoundingBoxUV^ GetRegionEnvelope(
	int regionId
)

Parameters

regionId
Type: SystemInt32
The id of the region.

Return Value

The envelope of the region.

Remarks

This envelope indicates the external boundary of the region. The coordinate system it defines is used in the results of GetSegmentCoordinate().

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException It is not a valid region id.
Autodesk.Revit.ExceptionsInvalidOperationException This operation is valid only for vertically compound structures.

See Also