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
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.
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