DlgCheckBox.GetProperties

table DlgCheckBox.GetProperties ( 

number ControlID )

Example 1

tProperties = DlgCheckBox.GetProperties(CTRL_CHECK_BOX_01);

Gets the properties for the '01' Check Box Control on the current screen and stores the results in the table "tProperties."

Example 2

tCheckProperties = DlgCheckBox.GetProperties(nControlID);

if not tCheckProperties.Visible then
    tCheckProperties.Visible = true;
    DlgCheckBox.SetProperties(nControlID, tCheckProperties);
end

Gets the properties of the check box control whose id is stored in nControlID.  If this control is not visible, it is made visible.

See also:  Related Actions