You interact with the controls on your page through the GetControlWrapper template function, which provides access to one of the types of components listed in Table 6.
Table 6. Components
|
Dialog control types |
Description |
|
CONTROL_CHECK_BOX |
(ICheckBox) A façade for working with check box controls |
|
CONTROL_COMBO_BOX |
(IComboBox) A façade for combo box controls |
|
CONTROL_GENERIC |
(IControl) Allows you to work with most types of controls to control enable and visible state |
|
CONTROL_LIST_VIEW |
(IListView) A façade providing access to the features of a list view control |
|
CONTROL_PROGRESS_BAR |
(IProgressBar) A façade for working with the position of a progress bar control |
|
CONTROL_RADIO_BUTTON |
(IRadioButton) A façade for working with radio button controls |
|
CONTROL_STATIC_TEXT |
(IStaticText) A façade that provides read/write permission to the text of a control, such as a label or text box |
|
CONTROL_TREE_VIEW |
(ItreeView) A façade for working with a tree view control |
Related Topics