Type | Description | |||
String | A String expression that indicates the name of the months in the year, separated by spaces. |
The MonthNames property specifies the name of the months in the year for the following built-in tags:
The following VB sample assigns Romanian name for months in the year:
With Gantt1.Chart .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" End With
The following C++ sample assigns Romanian name for months in the year:
m_gantt.GetChart().SetMonthNames( "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" );
The following VB.NET sample assigns Romanian name for months in the year:
With AxGantt1.Chart .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" End With
The following C# sample assigns Romanian name for months in the year:
axGantt1.Chart.MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie";
The following VFP sample assigns Romanian name for months in the year:
With thisform.Gantt1.Chart .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" EndWith