Splits horizontally one region in split crop.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 17.0.0.0 (17.0.484.0)
Since:
2016
Syntax
| C# |
|---|
public void SplitRegionHorizontally(
int regionIndex,
double leftPart,
double rightPart
) |
| Visual Basic |
|---|
Public Sub SplitRegionHorizontally ( _
regionIndex As Integer, _
leftPart As Double, _
rightPart As Double _
) |
| Visual C++ |
|---|
public:
void SplitRegionHorizontally(
int regionIndex,
double leftPart,
double rightPart
) |
Parameters
- regionIndex
- Type: System..::..Int32
Index of region to be split horizontally (numbering starts with 0).
- leftPart
- Type: System..::..Double
Relative portion of the original region to become the new left region (0 to 1).
- rightPart
- Type: System..::..Double
Relative portion of the original region to become the new right region (0 to 1).
Remarks
Exceptions
See Also