The PostScript property returns a PostScriptFill object that represents the settings for a PostScript fill.
Examples:
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