TaiwanCalendar
Contents
[
Hide
]TaiwanCalendar class
Taiwan calendar. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
class TaiwanCalendar : public System::Globalization::Calendar
Methods
Method | Description |
---|---|
virtual DateTime AddDays(DateTime, int) const | Adds days to time point. |
virtual DateTime AddHours(DateTime, int) const | Adds hours to time point. |
virtual DateTime AddMilliseconds(DateTime, double) const | Adds milliseconds to time point. |
virtual DateTime AddMinutes(DateTime, int) const | Adds minutes to time point. |
virtual DateTime AddMonths(DateTime, int) const | Adds months to time point. |
virtual DateTime AddSeconds(DateTime, int) const | Adds seconds to time point. |
virtual DateTime AddWeeks(DateTime, int) const | Adds weeks to time point. |
virtual DateTime AddYears(DateTime, int) const | Adds years to time point. |
Calendar(const Calendar&) | RTTI information. |
SharedPtr<Object> Clone() override | Creates a copy of the current object and returns a shared pointer to it. |
virtual bool Equals(ptr) | Compares objects using C# Object.Equals semantics. |
static std::enable_if<IsSmartPtr<T1>::value&&IsSmartPtr<T2>::value, bool>::type Equals(T1 const&, T2 const&) | Compares reference type objects in C# style. |
static std::enable_if<!IsSmartPtr<T1>::value&&!IsSmartPtr<T2>::value, bool>::type Equals(T1 const&, T2 const&) | Compares value type objects in C# style. |
static bool Equals(float const&, float const&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
static bool Equals(double const&, double const&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
virtual bool FastCast(const Details::FastRttiBase&, void **) const | For internal purposes only. |
CalendarAlgorithmType get_AlgorithmType() const override | Gets algorithm type. |
int get_CurrentEra() const | Gets index of current era. |
int get_CurrentEraValue() const | Gets value of current era. |
ArrayPtr<int> get_Eras() const override | Gets list of eras existing in calendar. |
bool get_IsReadOnly() const | Checks if the calendar is read only. |
DateTime get_MaxSupportedDateTime() const override | Maximal point in time that is supported by the calendar. |
DateTime get_MinSupportedDateTime() const override | Minimal point in time that is supported by the calendar. |
virtual int get_TwoDigitYearMax() const | Gets the last year that can be represented by a 2-digit. |
Detail::SmartPtrCounter * GetCounter() | Gets reference counter data structure associated with the object. |
int GetDayOfMonth(DateTime) const override | Gets day of month for the specified time point. |
DayOfWeek GetDayOfWeek(DateTime) const override | Gets day of week for the specified time point. |
int GetDayOfYear(DateTime) const override | Gets day of year for the specified time point. |
int GetDaysInMonth(int, int, int) const override | Gets number of days in specific month. |
virtual int GetDaysInMonth(int, int) const | Gets number of days in specific month. |
virtual int GetDaysInMonth(int, int, int) const | Gets number of days in specific month. |
int GetDaysInYear(int, int) const override | Gets number of days in specific year. |
virtual int GetDaysInYear(int) const | Gets number of days in specific year. |
virtual int GetDaysInYear(int, int) const | Gets number of days in specific year. |
int GetEra(DateTime) const override | Gets era for the specified time point. |
virtual int32_t GetHashCode() const | Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. |
virtual int GetHour(DateTime) const | Gets hours for the specified time point. |
int GetLeapMonth(int, int) const override | Gets the leap month for the specified year. |
virtual int GetLeapMonth(int) const | Gets the leap month for the specified year. |
virtual int GetLeapMonth(int, int) const | Gets the leap month for the specified year. |
virtual double GetMilliseconds(DateTime) const | Gets milliseconds for the specified time point. |
virtual int GetMinute(DateTime) const | Gets minutes for the specified time point. |
int GetMonth(DateTime) const override | Gets month for the specified time point. |
int GetMonthsInYear(int, int) const override | Gets number of months in the specified year. |
virtual int GetMonthsInYear(int) const | RTTI information. |
virtual int GetMonthsInYear(int, int) const | RTTI information. |
virtual int GetSecond(DateTime) const | Gets seconds for the specified time point. |
virtual const TypeInfo& GetType() const | Gets actual type of object. Analog of C# System.Object.GetType() call. |
virtual int GetWeekOfYear(DateTime, CalendarWeekRule, DayOfWeek) const | Gets week of the year for the specified time point. |
int GetYear(DateTime) const override | Gets year for the specified time point. |
virtual bool Is(const TypeInfo&) const | Check if object represents an instance of type described by targetType. Analog of C# ‘is’ operator. |
bool IsLeapDay(int, int, int, int) const override | Checks if the day is leap. |
virtual bool IsLeapDay(int, int, int) const | Checks if the day is leap. |
virtual bool IsLeapDay(int, int, int, int) const | Checks if the day is leap. |
bool IsLeapMonth(int, int, int) const override | Checks if the month is leap. |
virtual bool IsLeapMonth(int, int) const | Checks if the month is leap. |
virtual bool IsLeapMonth(int, int, int) const | Checks if the month is leap. |
bool IsLeapYear(int, int) const override | Checks if the year is leap. |
virtual bool IsLeapYear(int) const | Checks if the year is leap. |
virtual bool IsLeapYear(int, int) const | Checks if the year is leap. |
bool IsValidDay(int, int, int, int) const | Checks year, month, day and era values. |
void Lock() | Implements C# lock() statement locking. Call directly or use LockContext sentry object. |
virtual ptr MemberwiseClone() const | Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. |
Object() | Creates object. Initializes all internal data structures. |
Object(Object const&) | Copy constructor. Doesn’t copy anything, really, just initializes new object and enables copy constructing subclasses. |
Calendar& operator=(const Calendar&) | |
Object& operator=(Object const&) | Assignment operator. Doesn’t copy anything, really, just initializes new object and enables copy constructing subclasses. |
static CalendarPtr ReadOnly(const CalendarPtr&) | Gets read only version of calendar. |
static bool ReferenceEquals(ptr const&, ptr const&) | Compares objects by reference. |
static std::enable_if<!IsSmartPtr<T>::value, bool>::type ReferenceEquals(T const&, T const&) | Compares objects by reference. |
static std::enable_if<!IsSmartPtr<T>::value, bool>::type ReferenceEquals(T const&, std::nullptr_t) | Reference-compares value type object with nullptr. |
bool ReferenceEquals(String const&, std::nullptr_t) | Specialization of Object::ReferenceEquals for case of string and nullptr. |
bool ReferenceEquals(String const&, String const&) | Specialization of Object::ReferenceEquals for case of strings. |
int RemovedSharedRefs(int) | Decreases shared reference count by specified value. |
virtual void set_TwoDigitYearMax(int) | Sets the last year that can be represented by a 2-digit. |
virtual void SetTemplateWeakPtr(uint32_t) | Set n’th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. |
int SharedCount() const | Gets current value of shared reference counter. |
Object * SharedRefAdded() | Increments shared reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
int SharedRefRemovedSafe() | Decrements and returns shared reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
TaiwanCalendar() | Constructor. |
DateTime ToDateTime(int, int, int, int, int, int, int, int) const override | Constructs DateTime object from components. |
virtual DateTime ToDateTime(int, int, int, int, int, int, int) const | Constructs DateTime object from components. |
virtual DateTime ToDateTime(int, int, int, int, int, int, int, int) const | Constructs DateTime object from components. |
virtual int ToFourDigitYear(int) const | Converts the year to 4-digit year using TwoDigitYearMax property. |
virtual String ToString() const | Analog of C# Object.ToString() method. Enables converting custom objects to string. |
static const TypeInfo& Type() | Implements C# typeof(System.Object) construct. |
void Unlock() | Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. |
Detail::SmartPtrCounter * WeakRefAdded() | Increments weak reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
void WeakRefRemoved() | Decrements weak reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
virtual ~Object() | Destroys object. Frees all internal data structures. |
See Also
- Class Calendar
- Namespace System::Globalization
- Library Aspose.Slides