Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.Color |
Property Color As String
Member of SeparationPlate
The Color property returns the color of a separation plate.
The Color property returns a read-only value.
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 |
Copyright 2013 Corel Corporation. All rights reserved.