RangeValuePattern.IsReadOnlyProperty Field

Definition

Identifies the IsReadOnly property.

C#
public static readonly System.Windows.Automation.AutomationProperty IsReadOnlyProperty;

Field Value

Examples

In the following example, a root element is passed to a function that returns a collection of AutomationElements that are descendants of the root and satisfy a set of property conditions.

C#
///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy 
/// the specified condition(s).
/// </summary>
/// <param name="targetApp">
/// The automation element from which to start searching.
/// </param>
/// <returns>
/// A collection of automation elements satisfying 
/// the specified condition(s).
/// </returns>
///--------------------------------------------------------------------
private AutomationElementCollection FindAutomationElement(
    AutomationElement targetApp)
{
    if (targetApp == null)
    {
        throw new ArgumentException("Root element cannot be null.");
    }

    PropertyCondition conditionIsReadOnly =
        new PropertyCondition(
        RangeValuePattern.IsReadOnlyProperty, false);

    return targetApp.FindAll(
        TreeScope.Descendants, conditionIsReadOnly);
}

Remarks

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

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, 10