Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_HIDE
- Timestamp:
- 03/12/25 08:29:45 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_HIDE
v6 v7 2 2 Hides a form. 3 3 4 {{{ 4 {{{#!c++ 5 5 void FORM_HIDE(formName); 6 6 }}} … … 18 18 FORM_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. 19 19 20 {{{ 20 {{{#!c++ 21 21 #define FORM_HIDE(f) form##f.Hide() 22 22 }}} … … 24 24 == Examples == 25 25 26 {{{ 26 {{{#!c++ 27 27 void IDScreen(void) 28 28 {