Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
AutomationElement.IsTogglePatternAvailableProperty Field
Definition
- Namespace:
- System.Windows.Automation
- Assembly:
- UIAutomationClient.dll
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Identifies the property that indicates whether the TogglePattern control pattern is available on this AutomationElement.
public: static initonly System::Windows::Automation::AutomationProperty ^ IsTogglePatternAvailableProperty;
public static readonly System.Windows.Automation.AutomationProperty IsTogglePatternAvailableProperty;
staticval mutable IsTogglePatternAvailableProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsTogglePatternAvailableProperty As AutomationProperty
Field Value
Examples
The following example ascertains whether a specified control pattern is supported by an AutomationElement.
// TODO Substitute the appropriate field for IsDockPatternAvailableProperty.
bool isPatternAvailable = (bool)
autoElement.GetCurrentPropertyValue(AutomationElement.IsDockPatternAvailableProperty);
' TODO Substitute the appropriate field for IsDockPatternAvailableProperty.
Dim isPatternAvailable As Boolean = _
CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsDockPatternAvailableProperty))
Remarks
This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent identifier in AutomationElementIdentifiers.
Return values of the property are of type Boolean. The default value for the property is false.
Applies to
See also
Feedback
Was this page helpful?
