| Rapid-Q Documentation by William Yu (c)1999 | Appendix A: QPANEL |
| Method | Type | Description | Params | Support |
| Repaint | SUB | Refreshes panel and all contents | 0 | W |
| Event | Type | Occurs when... | Params | Support |
| OnClick | VOID | User clicked on open area of panel | 0 | WX |
| OnDblClick | VOID | User double clicked panel | 0 | W |
| OnMouseDown | SUB (Button%, X%, Y%, Shift%) | Mouse button held down | 4 | W |
| OnMouseMove | SUB (X%, Y%, Shift%) | Mouse moves over panel | 3 | W |
| OnMouseUp | SUB (Button%, X%, Y%, Shift%) | Mouse button is released | 4 | W |
DIM Form AS QForm DIM Button AS QButton DIM Panel AS QPanel Panel.Parent = Form Panel.Width = 100 Button.Parent = Panel Form.ShowModal
| Prev Component | Contents | Next Component |