TablePattern.RowOrColumnMajorProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
RowOrColumnMajor プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ RowOrColumnMajorProperty;
public static readonly System.Windows.Automation.AutomationProperty RowOrColumnMajorProperty;
staticval mutable RowOrColumnMajorProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RowOrColumnMajorProperty As AutomationProperty
フィールド値
例
次の例では、ルート要素は、ルートの子孫であり、一連のプロパティ条件を満たすオブジェクトの AutomationElement コレクションを返す関数に渡されます。 この例では、 をAutomationElementサポートTablePatternする を取得し、 が または ColumnMajorであるIndeterminate場所をRowOrColumnMajorProperty取得します。
///--------------------------------------------------------------------
/// <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 conditionSupportsTablePattern =
new PropertyCondition(
AutomationElement.IsTablePatternAvailableProperty, true);
PropertyCondition conditionIndeterminateTraversal =
new PropertyCondition(
TablePattern.RowOrColumnMajorProperty,
RowOrColumnMajor.Indeterminate);
PropertyCondition conditionRowColumnTraversal =
new PropertyCondition(
TablePattern.RowOrColumnMajorProperty,
RowOrColumnMajor.ColumnMajor);
AndCondition conditionTable =
new AndCondition(
conditionSupportsTablePattern,
new OrCondition(
conditionIndeterminateTraversal,
conditionRowColumnTraversal));
return targetApp.FindAll(
TreeScope.Descendants, conditionTable);
}
'''--------------------------------------------------------------------
''' <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 Function FindAutomationElement( _
ByVal targetApp As AutomationElement) As AutomationElementCollection
If targetApp Is Nothing Then
Throw New ArgumentException("Root element cannot be null.")
End If
Dim conditionSupportsTablePattern As New PropertyCondition( _
AutomationElement.IsTablePatternAvailableProperty, True)
Dim conditionIndeterminateTraversal As New PropertyCondition( _
TablePattern.RowOrColumnMajorProperty, RowOrColumnMajor.Indeterminate)
Dim conditionRowColumnTraversal As New PropertyCondition( _
TablePattern.RowOrColumnMajorProperty, RowOrColumnMajor.ColumnMajor)
Dim conditionTable As New AndCondition( _
conditionSupportsTablePattern, _
New OrCondition(conditionIndeterminateTraversal, _
conditionRowColumnTraversal))
Return targetApp.FindAll(TreeScope.Descendants, conditionTable)
End Function 'FindAutomationElement
注釈
この識別子は、UI オートメーション クライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 で TablePatternIdentifiers同等のフィールドを使用する必要があります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET