CLRTITLE Mnemonic - Clear Window and Control Titles According to ID
Syntax
'CLRTITLE'(id{,id...})
Description
The 'CLRTITLE' mnemonic clears the titles of windows and controls in the current context, based on the control or window ID.
Parameter |
Description |
id |
Window or control ID in the current context. Specifying 0 as the only id removes all windows and control titles. Unless each id in the list refers to an ID of a control or window contained in the current context, 'CLRTITLE' will not clear any titles but will generate an !ERROR=29 with the TCB(10) set to the id that prompted the error. |
Example
The following example clears the titles from controls or windows contained in the current context that have control or window IDs of 112, 114, and 115:
PRINT (sysgui)'CLRTITLE'(112,114,115)