Previous Document Next Document

Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.Frequency


SeparationPlate.Frequency

Property Frequency As Double

Description

Member of SeparationPlate

The Frequency property returns the screen frequency of a separation plate.

VBA example

The following VBA example displays the angle and frequency of each separation plate.

Sub Test()
 Dim intPlateCounter As Integer
 With ActiveDocument
  With .PrintSettings.Separations.Plates
   For intPlateCounter = 1 To .Count - 1
    MsgBox "The angle of the " & .Item(intPlateCounter).Color & _
     " plate is " & .Item(intPlateCounter).Angle & vbCr & _
     " The frequency is " & .Item(intPlateCounter).Frequency
   Next intPlateCounter
  End With
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.