AutomationElement.GetSupportedProperties Method

Definition

Retrieves the identifiers of properties supported by the element.

C#
public System.Windows.Automation.AutomationProperty[] GetSupportedProperties();

Returns

An array of supported property identifiers.

Examples

The following example shows how to retrieve the properties supported by an AutomationElement.

C#
AutomationProperty[] properties = element.GetSupportedProperties();
foreach (AutomationProperty prop in properties)
{
    Console.WriteLine(prop.ProgrammaticName);
    Console.WriteLine(Automation.PropertyName(prop));
}

Remarks

The returned array identifies all the properties supported by this element; however, it can also contain duplicate entries or properties that contain null or empty values. For most purposes it is better to use GetCurrentPropertyValue to determine whether a property is currently supported and to get its current value.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also