Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/ShowItem
- Timestamp:
- 10/02/20 07:59:33 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/ShowItem
v6 v7 3 3 {{{ 4 4 CFormItem* CForm::ShowItem(const char* name, bool updateDisplay = true) 5 6 CFormItem* CForm::ShowItem(int nIDVal, bool updateDisplay = true) 5 7 }}} 6 8 … … 8 10 9 11 * name = The button title or input prompt text 12 * nIDVal = The ID value of a button or input prompt 10 13 * updateDisplay = (optional parameter, true if not included) true to update the display, false do not update the display 11 14 … … 16 19 == Remarks == 17 20 18 ShowItem is a wrapper for EnableItem with the enable parameter set to true to simplify code. It is equivalent to EnableItem(name, true, updateDisplay) 21 ShowItem is a wrapper for EnableItem with the enable parameter set to true to simplify code. It is equivalent to EnableItem(name, true, updateDisplay) or EnableItem(nIDVal, true, updateDisplay) 19 22 20 23 == Example ==