WindowPattern.Pattern Field
Identifies the WindowPattern control pattern.
Assembly: UIAutomationClient (in UIAutomationClient.dll)
This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent field in WindowPatternIdentifiers.
The pattern identifier is passed to methods such as GetCurrentPattern to retrieve the control pattern of interest from the specified AutomationElement.
In the following example, a WindowPattern control pattern is obtained from an AutomationElement.
///-------------------------------------------------------------------- /// <summary> /// Obtains a WindowPattern control pattern from an automation element. /// </summary> /// <param name="targetControl"> /// The automation element of interest. /// </param> /// <returns> /// A WindowPattern object. /// </returns> ///-------------------------------------------------------------------- private WindowPattern GetWindowPattern(AutomationElement targetControl) { WindowPattern windowPattern = null; try { windowPattern = targetControl.GetCurrentPattern(WindowPattern.Pattern) as WindowPattern; } catch (InvalidOperationException) { // object doesn't support the WindowPattern control pattern return null; } // Make sure the element is usable. if (false == windowPattern.WaitForInputIdle(10000)) { // Object not responding in a timely manner return null; } return windowPattern; }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.