Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_HIDE


Ignore:
Timestamp:
03/12/25 08:29:45 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_HIDE

    v6 v7  
    22Hides a form.
    33
    4 {{{
     4{{{#!c++
    55void FORM_HIDE(formName);
    66}}}
     
    1818FORM_HIDE is a macro to simplify the hiding of a form when complete. The preprocessor will convert this to a call to the specified form's Hide() function. If the form was initialized with nFormFlgClearItemsOnly the CForm::Hide function will only clear the form items and not the entire screen.
    1919
    20 {{{
     20{{{#!c++
    2121#define FORM_HIDE(f) form##f.Hide()
    2222}}}
     
    2424== Examples ==
    2525
    26 {{{
     26{{{#!c++
    2727void IDScreen(void)
    2828{