Previous Document Next Document

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


SeparationPlate.Color

Property Color As String

Description

Member of SeparationPlate

The Color property returns the color of a separation plate.

The Color property returns a read-only value.

VBA example

The following VBA example displays the color of each separation plate.

Sub Test()
 Dim strPlates As String
 Dim Plate As SeparationPlate
 Dim intPlateCounter As Integer
 With ActiveDocument.PrintSettings.Separations
  For intPlateCounter = 1 To .Plates.Count - 1
   strPlates = strPlates & .Plates(intPlateCounter).Color & vbCr
  Next intPlateCounter
  MsgBox strPlates
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.