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