Settings for the fill pattern and color of a graphic control.
Oval, Rectangle, and RoundRectangle controls
Describe and Modify argument:
"controlname.Brush.property { = ' value ' }"
Parameter |
Description |
---|---|
controlname |
The name of the Line, Oval, Rectangle, RoundRectangle, or Text control whose Brush property you want to get or set. |
property |
A property that applies to the Brush characteristics of a control, as listed in the table below. |
value |
Values for the properties are shown in the next table. Value can be a quoted DataWindow expression. |
Property for Brush |
Value |
---|---|
Color |
(exp) A long expression specifying the color (the red, green, and blue values) to be used to fill the control. |
Hatch |
(exp) A number expression specifying the fill pattern of controlname. Values are:
|
Select the control and set the value in the Properties window, Appearance category.
When you choose a Brush Hatch fill pattern other than Solid, the Background Color and the Brush Color are used for the pattern colors.
[Visual Basic] ls_data = dw1.Describe("oval_1.Brush.Hatch")
dw1.Modify("oval_1.Brush.Hatch='5'")
dw1.Modify("oval_1.Brush.Color='16731766'")