AssociateRegionWithLayer Method


Associates a region with a layer.

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

Syntax

C#
public void AssociateRegionWithLayer(
	int regionId,
	int layerIdx
)
Visual Basic
Public Sub AssociateRegionWithLayer ( _
	regionId As Integer, _
	layerIdx As Integer _
)
Visual C++
public:
void AssociateRegionWithLayer(
	int regionId, 
	int layerIdx
)

Parameters

regionId
Type: SystemInt32
The id of a region.
layerIdx
Type: SystemInt32
The index of a layer in this CompoundStructure.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException It is not a valid region id.
Autodesk.Revit.ExceptionsArgumentOutOfRangeException The layer index is out of range.
Autodesk.Revit.ExceptionsInvalidOperationException This operation is valid only for vertically compound structures.

See Also