Previous Document Next Document

Object Model Reference : Classes : P : PrintSeparations : Properties : PrintSeparations.Enabled


PrintSeparations.Enabled

Property Enabled As Boolean

Description

Member of PrintSeparations

The PrintSeparations property determines whether separations are printed.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.