NumberSubstitution.CultureSource Property

Definition

Gets or sets a value which identifies the source of the culture value that is used to determine number substitution.

public:
 property System::Windows::Media::NumberCultureSource CultureSource { System::Windows::Media::NumberCultureSource get(); void set(System::Windows::Media::NumberCultureSource value); };
public System.Windows.Media.NumberCultureSource CultureSource { get; set; }
member this.CultureSource : System.Windows.Media.NumberCultureSource with get, set
Public Property CultureSource As NumberCultureSource

Property Value

An enumerated value of NumberCultureSource.

Remarks

The default value of the CultureSource property is Text, which is the culture of the text run.

This reference page represents two identically named but not entirely equivalent usages for the CultureSource property:

  • You can set this property in code on a NumberSubstitution instance, as a common language runtime (CLR) property. In this usage, the property is not backed by a dependency property identifier, it is backed by a private field and does not act as a dependency property.

  • You can set this property as an attached property usage in XAML. The attached property usage is the reason why this property has a Dependency Property Information section, because the attached property is backed by a dependency property identifier. In XAML, the usage is <object NumberSubstitution.CultureSource="value".../>, where object is an object element where the specified number substitution logic applies, and value is a string representation of a NumberCultureSource value. In code, the attached property usage is supported by GetCultureSource and SetCultureSource.

XAML Attribute Usage

<object NumberSubstitution.CultureSource="NumberCultureSource"/>

Dependency Property Information

Identifier field CultureSourceProperty
Metadata properties set to true None

Applies to