DlgButton.GetProperties

table DlgButton.GetProperties ( 

number ControlID )

Example 1

tProperties = DlgButton.GetProperties(CTRL_BUTTON_HELP);

Gets the properties for the help button on the current screen and stores the results in the table "tProperties."

Example 2

tButtonProperties = DlgButton.GetProperties(nControlID);

if not tButtonProperties.Visible then
    tButtonProperties.Visible = true;
    DlgButton.SetProperties(nControlID, tButtonProperties);
end

Gets the properties of the button whose id is stored in nControlID.  If this button is currently not visible, it is made visible.

See also:  Related Actions