Object Model Reference : Classes : F : Fill : Properties : Fill.PostScript |
Property PostScript As PostScriptFill
Member of Fill
The PostScript property returns a PostScriptFill object that represents the settings for a PostScript fill.
The following VBA example creates a rectangle and applies a PostScript fill to it. The bar-width parameter is then changed to 40.
Sub Test() |
Dim s As Shape |
Set s = ActiveLayer.CreateRectangle(0, 0, 2, 2) |
s.Fill.ApplyPostscriptFill "Bars" |
s.Fill.PostScript.Properties(1) = 40 |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.