Object Model Reference : Classes : L : Layer : Properties : Layer.Master |
Property Master As Boolean
Member of Layer
The Master property returns or specifies whether the layer is a master layer or a local layer.
If the Master property is True, the layer acts as a master layer for the entire document, and its contents appear on every page in that document.
The following VBA example makes the active layer a master layer, ensuring that its content appears on every page throughout the document.
Sub Test() |
ActiveLayer.Master = True |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.