The displayed month names.
Usage
Set_Property(OLECtrlEntID, "OLE.MonthNames", Array)
Values
Array has the following structure:
Pos | Name | Type | Description | Default |
---|---|---|---|---|
<1> | January | Text | The display name for January | January |
<2> | February | Text | The display name for February | February |
<3> | March | Text | The display name for March | March |
<4> | April | Text | The display name for April | April |
<5> | May | Text | The display name for May | May |
<6> | June | Text | The display name for June | June |
<7> | July | Text | The display name for July | July |
<8> | August | Text | The display name for August | August |
<9> | September | Text | The display name for September | September |
<10> | October | Text | The display name for October | October |
<11> | November | Text | The display name for November | November |
<12> | December | Text | The display name for December | December |
Remarks
The MonthNames property is a dynamic array of month names, which you may customize for internationalization purposes. The array is in order from January to December. 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
// Set months in Spanish Months = "Enero":@FM:"Febrero":@FM:"Marzo" Months := "Abril":@FM:"Mayo":@FM:"Junio" Months := "Julio":@FM:"Agosto":@FM:"Septiembre" Months := "Octubre":@FM:"Noviembre":@FM:"Diciembre" Set_Property(@Window:".OLE_DATEPICKER", "OLE.MonthNames", Months)