SelectionItemPattern.IsSelectedProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IsSelected プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ IsSelectedProperty;
public static readonly System.Windows.Automation.AutomationProperty IsSelectedProperty;
staticval mutable IsSelectedProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsSelectedProperty As AutomationProperty
フィールド値
例
次の例では、ルート要素は、ルートの子孫であり、一連のプロパティ条件を満たすUI オートメーション要素のコレクションを返す関数に渡されます。
///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy
/// the specified condition(s).
/// </summary>
/// <param name="rootElement">
/// 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 rootElement)
{
if (rootElement == null)
{
throw new ArgumentException("Root element cannot be null.");
}
PropertyCondition conditionIsSelected =
new PropertyCondition(
SelectionItemPattern.IsSelectedProperty, false);
return rootElement.FindAll(
TreeScope.Descendants, conditionIsSelected);
}
'''--------------------------------------------------------------------
''' <summary>
''' Finds all automation elements that satisfy
''' the specified condition(s).
''' </summary>
''' <param name="rootElement">
''' The automation element from which to start searching.
''' </param>
''' <returns>
''' A collection of automation elements satisfying
''' the specified condition(s).
''' </returns>
'''--------------------------------------------------------------------
Private Function FindAutomationElement( _
ByVal rootElement As AutomationElement) As AutomationElementCollection
If rootElement Is Nothing Then
Throw New ArgumentException("Root element cannot be null.")
End If
Dim conditionIsSelected As New PropertyCondition( _
SelectionItemPattern.IsSelectedProperty, False)
Return rootElement.FindAll(TreeScope.Descendants, conditionIsSelected)
End Function 'FindAutomationElement
注釈
この識別子は、UI オートメーションクライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 でSelectionItemPatternIdentifiers同等のフィールドを使用する必要があります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET