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
FieldTypeR/WDefault
AlignINTEGERRWalNone
Align determines how the control aligns within its parent control.
BackColorINTEGERRWclWhite
BackColor specifies the background color of the component.
BorderStyleINTEGERRWbsSingle
ColorINTEGERRW
CursorINTEGERRWcrDefault
EnabledINTEGERRWTrue
FontQFONTW
ForeColorINTEGERRW
ForeColor specifies the color of the progress meter.
HeightINTEGERRW
HintSTRINGRW
KindINTEGERRWgkHorizontalBar
LeftINTEGERRW
MaxINTEGERRW100
MinINTEGERRW0
ParentQFORM/QPANEL/QTABCONTROLW
PositionINTEGERRW0
ShowHintINTEGERRWFalse
ShowTextINTEGERRWTrue
ShowText determines whether the progress text (as a percent) should be displayed.
TopINTEGERRW
VisibleINTEGERRWTrue
WidthINTEGERRW

QGauge Examples
$INCLUDE "RAPIDQ.INC"

CREATE Form AS QForm
  Center
  CREATE Gauge AS QGauge
    Position = 20
    Kind = gkPie
  END CREATE
  ShowModal
END CREATE

Prev Component Contents Next Component