AutomationElement.CultureProperty Field

Definition

Identifies the culture property.

public: static initonly System::Windows::Automation::AutomationProperty ^ CultureProperty;
public static readonly System.Windows.Automation.AutomationProperty CultureProperty;
 staticval mutable CultureProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly CultureProperty As AutomationProperty 

Field Value

Examples

The following example retrieves the current value of the property.

System.Globalization.CultureInfo culture =
   autoElement.GetCurrentPropertyValue(AutomationElement.CultureProperty)
   as System.Globalization.CultureInfo;
Dim culture As System.Globalization.CultureInfo = _
    DirectCast(autoElement.GetCurrentPropertyValue(AutomationElement.CultureProperty), _
    System.Globalization.CultureInfo)

Remarks

This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent identifier in AutomationElementIdentifiers.

Within the Windows Presentation Foundation (WPF) framework, the default value reported will always be en-US because the .NET Framework automatically defaults to English. For other user interface (UI) frameworks, this property must be explicitly set or it will not be exposed.

This property can exist on a per-control basis, but typically is only available on an application level.

Return values of the property are of type CultureInfo.

Applies to

See also