Returns or sets how the object is filled.
Object.FillStyle [ = enFillStyle ]
The FillStyle property syntax has the following parts:
Name |
Type |
Description |
Object |
AThumb |
AThumb object |
enFillStyle |
enumAThumbFillStyle |
An integer specifying the predefined style of the object. |
enumAThumbFillStyle can be one of the following:
Name |
Value |
Description |
atmbFillStyleFillToMin |
0 |
Fill to min. The area between this thumb and the minimum value is filled. |
atmbFillStyleFillToMax |
1 |
Fill to max. The area between this thumb and the maximum value is filled. |
atmbFillStyleFillToGreater |
2 |
Fill to greater. The area between this thumb and the thumb with the next larger value is filled. If there are no thumb with larger values, the area between this thumb and the maximum value is filled. |
atmbFillStyleFillToLess |
3 |
Fill to less. The area between this thumb and the thumb with the next smaller value is filled. If there are no thumb with smaller values, the area between this thumb and the minimum value is filled. |
atmbFillStyleNone |
4 * |
No fill is drawn. |
The following statement changes the AThumb's FillStyle to fill the area between this thumb and the minimum value:
tmb1.FillStyle=atmbFillStyleFillToMin