Appendix A: QGAUGE
| Rapid-Q Documentation by William Yu (c)1999-2000 |
Appendix A: QGAUGE |
|
QGAUGE Component
QGauge is a sophisticated progress monitor. Used visually to give users the progress
of an operation.
QGauge Properties
| Field | Type | R/W | Default |
|
|
|
|
| Align | INTEGER | RW | alNone |
| Align determines how the control aligns within its parent control.
|
| BackColor | INTEGER | RW | clWhite |
| BackColor specifies the background color of the component.
|
| BorderStyle | INTEGER | RW | bsSingle |
| Color | INTEGER | RW | |
| Cursor | INTEGER | RW | crDefault |
| Enabled | INTEGER | RW | True |
| Font | QFONT | W | |
| ForeColor | INTEGER | RW | |
| ForeColor specifies the color of the progress meter.
|
| Height | INTEGER | RW | |
| Hint | STRING | RW | |
| Kind | INTEGER | RW | gkHorizontalBar |
| Left | INTEGER | RW | |
| Max | INTEGER | RW | 100 |
| Min | INTEGER | RW | 0 |
| Parent | QFORM/QPANEL/QTABCONTROL | W | |
| Position | INTEGER | RW | 0 |
| ShowHint | INTEGER | RW | False |
| ShowText | INTEGER | RW | True |
| ShowText determines whether the progress text (as a percent) should be displayed.
|
| Top | INTEGER | RW | |
| Visible | INTEGER | RW | True |
| Width | INTEGER | RW | |
QGauge Examples
$INCLUDE "RAPIDQ.INC"
CREATE Form AS QForm
Center
CREATE Gauge AS QGauge
Position = 20
Kind = gkPie
END CREATE
ShowModal
END CREATE
|
|