Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/HideItem


Ignore:
Timestamp:
10/02/20 07:57:09 (4 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v4 v5  
    33{{{
    44CFormItem* CForm::HideItem(const char* name, bool updateDisplay = true)
     5
     6CFormItem* CForm::HideItem(int nIDVal, bool updateDisplay = true)
    57}}}
    68
     
    810
    911* name  =  The button title or input prompt text
     12* nIDVal = The ID value of a button or input
    1013* updateDisplay = (optional parameter, true if not included) true to update the display, false do not update the display
    1114
    1215== Return Value ==
    1316
    14 The !ShowItem function returns a pointer to the CFormItem found based on the provided name value; NULL is returned if no item is found with a matching name value.
     17The !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.
    1518
    1619== Remarks ==