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 的 ,其中 为 RowOrColumnMajorPropertyIndeterminate 或 ColumnMajor。
///--------------------------------------------------------------------
/// <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等效字段。