Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CultureAndRegionInfoBuilder::TextInfo Property

 

Gets or sets the TextInfo object that defines the writing system associated with this custom culture.

Namespace:   System.Globalization
Assembly:  sysglobl (in sysglobl.dll)

public:
property TextInfo^ TextInfo {
	TextInfo^ get();
	void set(TextInfo^ value);
}

Property Value

Type: System.Globalization::TextInfo^

The object that defines the writing system associated with this custom culture.

Exception Condition
NotSupportedException

This operation is not supported for replacement cultures.

ArgumentNullException

The value in a set operation is null.

ArgumentOutOfRangeException

The number of characters in a list separator does not range from 0 to 3.

The CultureAndRegionInfoBuilder::TextInfo property provides culture-specific casing information for strings. It corresponds to the CultureInfo::TextInfo property.

The TextInfo and CompareInfo objects that are assigned to the TextInfo and CompareInfo properties both support culture-sensitive and case-sensitive string comparison. The CompareInfo object also has methods that include a CompareOptions parameter that supports culture-sensitive, case-insensitive comparison. These two properties should be assigned TextInfo and CompareInfo objects that represent the same locale.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft