Previous Document Next Document

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


PrintSeparations.Plates

Property Plates As SeparationPlates

Description

Member of PrintSeparations

The Plates property returns a read-only reference to the SeparationPlates collection.

VBA example

The following VBA example displays the number of items in the SeparationPlates collection.

Sub Test()
 Dim Seps As SeparationPlates
 With ActiveDocument
  With .PrintSettings
   Set Seps = .Separations.Plates
   .Separations.Enabled = True
   MsgBox "There are " & Seps.Count & " plates."
  End With
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.