Versions Compared

Key

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

...

The Days parameter is an @FM delimited list of dates or date ranges. For single dates, the field is a single integer representing a single date ing OpenInsight's internal format. For date ranges, the field is two integers separated by a dash '-' character. You can supply any combination of single dates or date ranges in any order. All dates in the list will be set to the given style.

Example

Code Block
 // Set style to Bold Red 
Style = "" 
Style<1> = "Red" 
Style<3> = @SVM:@SVM:700 

 // Set a single date followed by a date range 
Days = "" 
Days<1> = "15250" 
Days<2> = "15260-15266" 

 // Make the call 
Send_Message(@Window:".OLE_DATEPICKER", "OLE.SetDayStyles"

...