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