Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/ShowItem


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

--

Legend:

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

    v6 v7  
    33{{{
    44CFormItem* CForm::ShowItem(const char* name, bool updateDisplay = true)
     5
     6CFormItem* CForm::ShowItem(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 prompt
    1013* updateDisplay = (optional parameter, true if not included) true to update the display, false do not update the display
    1114
     
    1619== Remarks ==
    1720
    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)
     21ShowItem 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)
    1922
    2023== Example ==