Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/EnableItem


Ignore:
Timestamp:
05/17/19 15:14:48 (6 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v2  
    33{{{
    44CFormItem* CForm::EnableItem(const char* pszName, bool enable, bool show)
     5
     6CFormItem* CForm::EnableItem(int nIDVal, bool enable, bool show)
    57}}}
    68
     
    810
    911* pszName  =  The button title or input prompt text
     12* nIDVal   =  The ID value of a button or input text
    1013* enable   =  true to enable the item, false to disable
    1114* show     =  true to update the display, false do not update the display
     
    1316== Return Value ==
    1417
    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.
     18The !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.
    1619
    1720== Remarks ==