API Documentation > CorelDRAW > 2025-v26 > Layer > IVGLayer
Layer.Printable property
Returns or sets the layer's printability state
Syntax:
Property Get Printable() As Boolean
Property Let Printable(ByVal Value As Boolean)
Remarks:
The Printable property returns or specifies whether a layer is printable. If the Printable property of a layer is True, the layer and its contents are printable.
Examples:
The following VBA example makes the Grid layer on the master page printable.
Sub Test()
ActiveDocument.Pages(0).Layers("Grid").Printable = True 
End Sub