![]() | Type | Description | ||
| Name as OptionEnum | An OptionEnum expression that indicates the option being changed. | |||
| Variant | A Variant value that indicates the option's newly value. |
The following sample customizes the EditDate editor to display strings in Romanian language:
With PropertiesList1
.Option(exDateTodayCaption) = "Azi"
.Option(exDateMonths) = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Decembrie"
.Option(exDateWeekDays) = "D L M M J V S"
.Option(exDateFirstWeekDay) = 1
.Add "Date", Date, EditDate
End With