API Documentation > CorelDRAW > 2025-v26 > Fill > IVGFill
Fill.PostScript property
Gets or sets PostScript properties
Syntax:
Property Get PostScript() As PostScriptFill
Property Set PostScript(ByVal Value As PostScriptFill)
Remarks:
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