C# Class Automation.UI.Util.AutomationPropertyHelper

Provides convenience methods for working with automation properties.
Mostrar archivo Open project: vijayakumarsuraj/UIAutomation Class Usage Examples

Public Methods

Method Description
Equals ( object property1, object property2 ) : bool

Compares the specified property values to see if they are equal.

ProgrammaticName ( AutomationProperty property ) : string

Gets the programmatic name for the specified automation property.

ToString ( object property ) : string

Gets the string representation of the specified automation property value.

Method Details

Equals() public static method

Compares the specified property values to see if they are equal.
public static Equals ( object property1, object property2 ) : bool
property1 object The first property.
property2 object The second property.
return bool

ProgrammaticName() public static method

Gets the programmatic name for the specified automation property.
public static ProgrammaticName ( AutomationProperty property ) : string
property System.Windows.Automation.AutomationProperty The automation property.
return string

ToString() public static method

Gets the string representation of the specified automation property value.
public static ToString ( object property ) : string
property object The property.
return string