API Documentation
>
CorelDRAW
>
2025-v26
>
Layer
>
IVGLayer
Layer.MoveBelow method
Places a layer below another layer
Syntax:
Sub
MoveBelow
(
ByVal
Layer
As
Layer
)
Parameters:
Name
Type
Description
Layer
Layer
Remarks:
The
MoveBelow
method changes the stacking order of a specified layer by placing another layer below it, thereby rearranging them.
Examples:
The following VBA example moves the current layer and places it below the layer named
Layer 1
.
Sub Test() ActiveLayer.MoveBelow ActivePage.Layers("Layer 1") End Sub