Object Model Reference : Classes : P : PrintSeparations : Properties : PrintSeparations.Enabled |
Property Enabled As Boolean
Member of PrintSeparations
The PrintSeparations property determines whether separations are printed.
The following VBA example enables separations and displays the Print dialog box.
Sub Test() |
With ActiveDocument |
With .PrintSettings |
.Separations.Enabled = True |
.ShowDialog |
End With |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.