Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/HideItem
- Timestamp:
- 10/02/20 07:57:09 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/HideItem
v4 v5 3 3 {{{ 4 4 CFormItem* CForm::HideItem(const char* name, bool updateDisplay = true) 5 6 CFormItem* CForm::HideItem(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 10 13 * updateDisplay = (optional parameter, true if not included) true to update the display, false do not update the display 11 14 12 15 == Return Value == 13 16 14 The ! ShowItem function returns a pointer to the CFormItem found based on the provided namevalue; NULL is returned if no item is found with a matching name value.17 The !HideItem function returns a pointer to the CFormItem found based on the provided name or nIDVal value; NULL is returned if no item is found with a matching name value. 15 18 16 19 == Remarks ==