API Documentation
>
CorelDRAW
>
2025-v26
>
ShapeRange
>
IVGShapeRange
ShapeRange.SizeHeight property
Gets or sets the height of the shape range on the page
Syntax:
Property
Get
SizeHeight
(
)
As
Double
Property
Let
SizeHeight
(
ByVal
Value
As
Double
)
Remarks:
The
SizeHeight
property returns or specifies the vertical size of the shapes in a shape range, treating the range as a single object. See also the
ShapeRange.GetSize,
ShapeRange.SetSize,
ShapeRange.SetSizeEx,
ShapeRange.GetBoundingBox,
and
ShapeRange.SetBoundingBox
methods.
Examples:
The following VBA example stretches all shapes on the active layer so that the shape range is
2
" high.
Sub Test() ActiveLayer.Shapes.All.SizeHeight = 2 End Sub