List input SpinEdit field - FocusItem Property

Reference to the spin edit in the focus entry of the list

Member of List input SpinEdit field (PRIM_MD.ListSpinEdit)

Data Type - PRIM_MD.ListSpinEditCurrentItem - Provides access to the spinedit of the current list item

Details

The FocusItem property of a list edit allows access to the individual items within the list entries.
 
A list edit will only have a FocusItem if the FocusItem in the list has been set.

Example

Testing for a focus item before accessing the value property of the item.
If (#SpinEdit.FocusItem *isnot *null)
 
   If (#Spin.FocusItem.Value > 0)
      ...
   Endif
 
Endif

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2