DlgScrollingText.SetProperties

DlgScrollingText.SetProperties ( 

number ControlID,

table  Properties )

Example 1

DlgScrollingText.SetProperties(CTRL_SCROLLTEXT_BODY, {Visible = false, Enabled = false});

Disables and hides the "body" scrolling text control on the current screen.

Example 2

tProperties = DlgScrollingText.GetProperties(nControlID);

if not tProperties.Visible then
    tProperties.Visible = true;
    DlgScrollingText.SetProperties(nControlID, tProperties);
end

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

See also:  Related Actions