| Name | Type | Description |
|---|---|---|
| Param1 |
Long
|
|
| Param2 |
Long
|
Specifies the second property of a PostScript fill. For example, the Param2 value of the Bars fill references the Spacing (%) of the fill. |
| Param3 |
Long
|
Specifies the third property of a PostScript fill. For example, the Param3 value of the Bars fill references the Maximum gray value of the fill. |
| Param4 |
Long
|
Specifies the fourth property of a PostScript fill. For example, the Param4 value of the Bars fill references the Minimum gray value of the fill. |
| Param5 |
Long
|
Specifies the fifth property of a PostScript fill. For example, the Param5 value of the Checks fill references the Line width value of the fill. |
Sub Test()
Dim s As Shape
Dim pf As PostScriptFill
Set s = ActiveLayer.CreateRectangle(0, 0, 4, 4)
Set pf = s.Fill.ApplyPostscriptFill("ColorBubbles")
pf.SetProperties 10, 300, 100, 26, 10
End Sub