Kimono.KLocale.SetCalendar C# (CSharp) Method

SetCalendar() public method

Changes the current calendar system to the calendar specified. Currently "gregorian" and "hijri" are supported. If the calendar system specified is not found, gregorian will be used. name="calendarType" the name of the calendar type
public SetCalendar ( string calendarType ) : void
calendarType string
return void
        public void SetCalendar(string calendarType)
        {
            interceptor.Invoke("setCalendar$", "setCalendar(const QString&)", typeof(void), typeof(string), calendarType);
        }