Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The MaxSelCount and NoncontinuousSelection properties are ignored when setting this property.

Example

Code Block
 * Get the current selection
SelDates = Get_Property(@Window:".OLE_DATEPICKER", "OLE.SelPos")

 * Set the selection to today's date
Set_Property(@Window:".OLE_DATEPICKER", "OLE.SelPos", Date())

 * Clear the current selection
Set_Property(@Window:".OLE_DATEPICKER", "OLE.SelPos", "")

...