System::Globalization::TextInfo class
Contents
[
Hide
]TextInfo class
Defines locale-specific text properties. Setter operations are only enabled on non-read-only objects. 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 TextInfo : public System::ICloneable
Methods
Method | Description |
---|---|
Clone() override | RTTI information. |
Equals(SharedPtr<Object>) override | |
virtual get_ANSICodePage() const | Gets ANSI codepage. |
get_CultureName() const | Gets cluture name. |
virtual get_EBCDICCodePage() const | Gets EBCDIC codepage. |
get_IsReadOnly() const | Checks if format is read-only. |
get_IsRightToLeft() const | Checks if text is written left to right. |
get_LCID() const | Gets locale ID. |
virtual get_ListSeparator() const | Gets list separator. |
virtual get_MacCodePage() const | Gets Macintosh codepage. |
virtual get_OEMCodePage() const | Gets OEM codepage. |
GetHashCode() const override | Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. |
operator=(const TextInfo&) | |
static ReadOnly(const TextInfoPtr&) | Gets a read only version of culture. |
virtual set_ListSeparator(String) | Sets list separator. |
TextInfo(const TextInfo&) | RTTI information. |
virtual ToLower(char_t) const | Converts character to lower case. |
virtual ToLower(String) const | Converts string to lower case. |
ToString() const override | Analog of C# Object.ToString() method. Enables converting custom objects to string. |
ToTitleCase(String) const | Converts string to title case (except for acronyms that are in upper case already). |
virtual ToUpper(char_t) const | Converts character to upper case. |
virtual ToUpper(String) const | Converts string to upper case. |
See Also
- Class ICloneable
- Namespace System::Globalization
- Library Aspose.PUB for C++