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 G2antt1.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_g2antt.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 AxG2antt1.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:
axG2antt1.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.G2antt1.Chart .MonthNames = "Ianuarie Februarie Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie Noiembrie Decembrie" EndWith