Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/EnableItem
- Timestamp:
- 05/17/19 15:14:48 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/EnableItem
v1 v2 3 3 {{{ 4 4 CFormItem* CForm::EnableItem(const char* pszName, bool enable, bool show) 5 6 CFormItem* CForm::EnableItem(int nIDVal, bool enable, bool show) 5 7 }}} 6 8 … … 8 10 9 11 * pszName = The button title or input prompt text 12 * nIDVal = The ID value of a button or input text 10 13 * enable = true to enable the item, false to disable 11 14 * show = true to update the display, false do not update the display … … 13 16 == Return Value == 14 17 15 The !EnableItem function returns a pointer to the CFormItem found based on the provided name ; NULL is returned if no item is found with a matching name.18 The !EnableItem function returns a pointer to the CFormItem found based on the provided name or ID value; NULL is returned if no item is found with a matching name or ID value. 16 19 17 20 == Remarks ==