Type | Description | |||
String | A String expression that indicates the name of the days in the week, separated by spaces. |
The WeekDays property specifies the name of the days in the week for the following built-in tags:
The following VB sample assigns Romanian name for days in the week:
With Gantt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" End With
The following C++ sample assigns Romanian name for days in the week:
m_gantt.GetChart().SetWeekDays( "Duminica Luni Marti Miercuri Joi Vineri Simbata" );
The following VB.NET sample assigns Romanian name for days in the week:
With AxGantt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" End With
The following C# sample assigns Romanian name for days in the week:
axGantt1.Chart.WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata";
The following VFP sample assigns Romanian name for days in the week:
With thisform.Gantt1.Chart .WeekDays = "Duminica Luni Marti Miercuri Joi Vineri Simbata" EndWith