Versions Compared

Key

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

...

Users can select multiple dates by click-and-dragging the mouse or by holding the SHIFT key while left clicking. In both cases, the selection is continiuous. For non-continuous selection, see the NoncontinuousSelection property.

Example

Code Block
 // Allow up to 15 selections 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.MaxSelCount", 15) 

 // Disable selections 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.MaxSelCount", 0) 

 // Allow unlimited selections 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.MaxSelCount", -1)

...