Reference to the focus item in the column |
Member of List DateTime Column (PRIM_LIST.DateTime)
Data Type - PRIM_LIST.DateTimeCurrentItem - Provides access to the Date/Time for the current list item
The FocusItem property of a column allows access to the individual items within the column.
A column 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 (#Column.FocusItem *isnot *null)
If (#Column.FocusItem.Value <> *Null)
...
Endif
Endif