Versions Compared

Key

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

...

The DayOfWeekNames property is a dynamic array of names for the days of the week, which you may customize for internationalization purposes. The array is in order from Sunday to Saturday. Simply set this array to the list of names you wish to use. Any blank field is ignored and that field's name remains unchanged.

Example

Code Block
 // Set days in Spanish 
DayNames = "Domingo":@FM:"Lunes":@FM:"Martes":@FM:"Miércoles" 
DayNames := "Jueves":@FM:"Viernes":@FM:"Sábado" 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.DayOfWeekNames", DayNames)

...