Changes between Version 15 and Version 16 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CForm


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

--

Legend:

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

    v15 v16  
    146146}}}
    147147
     148=== !GetItem ===
     149
     150{{{
     151CFormItem* GetItem(int i)
     152}}}
     153
     154==== Parameters ====
     155
     156* i  =  The item index to return
     157
     158==== Return Value ====
     159
     160The !GetItem function returns a pointer to the CFormItem found based on the provided index; NULL is returned if the index is out of range.
     161
     162==== Remarks ====
     163
     164
     165==== Example ====
     166
     167
    148168=== !FindName ===
    149169
     
    166186
    167187
     188=== !GetItemByIDVal ===
     189
     190{{{
     191CFormItem* GetItemByIDVal(int nIDVal)
     192}}}
     193
     194==== Parameters ====
     195
     196* nIDVal  =  The item ID value of a form item in the form
     197
     198==== Return Value ====
     199
     200The !GetItemByIDVal function returns a pointer to the CFormItem found based on the provided ID value; NULL is returned if no item is found with a ID value.
     201
     202==== Remarks ====
     203
     204
     205==== Example ====
     206
     207
     208=== !GetItemIndex ===
     209
     210{{{
     211int GetItemIndex(CFormItem* pItem)
     212}}}
     213
     214==== Parameters ====
     215
     216* pItem  =  pointer to a CFormButton or CFormInput item.
     217
     218==== Return Value ====
     219
     220The !GetItemIndex function returns the item index of the pointer specified; -1 is returned if no item is found with a matching name.
     221
     222==== Remarks ====
     223
     224
     225==== Example ====
     226
     227
     228=== !GetItemCount ===
     229
     230{{{
     231int GetItemCount(void)
     232}}}
     233
     234==== Parameters ====
     235
     236* function does not take any parameters.
     237
     238==== Return Value ====
     239
     240The !GetItemCount function returns the number of items in the form.
     241
     242==== Remarks ====
     243
     244
     245==== Example ====
     246