GridPattern.RowCountProperty 필드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
RowCount 속성을 식별합니다.
public: static initonly System::Windows::Automation::AutomationProperty ^ RowCountProperty;
public static readonly System.Windows.Automation.AutomationProperty RowCountProperty;
staticval mutable RowCountProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RowCountProperty As AutomationProperty
필드 값
예제
다음 예제에서는 루트 요소를 루트의 후손이 및 속성 조건 집합을 만족 하는 자동화 요소의 컬렉션을 반환 하는 함수에 전달 됩니다. 이 예제에서는 검색을 지 원하는 UI 자동화 요소 GridPattern 있으 나 현재 항목을 하나만 트리에서 합니다.
///--------------------------------------------------------------------
/// <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 conditionSupportsGridPattern =
new PropertyCondition(
AutomationElement.IsGridPatternAvailableProperty, true);
PropertyCondition conditionOneColumn =
new PropertyCondition(
GridPattern.ColumnCountProperty, 1);
PropertyCondition conditionOneRow =
new PropertyCondition(
GridPattern.RowCountProperty, 1);
AndCondition conditionSingleItemGrid =
new AndCondition(
conditionSupportsGridPattern,
conditionOneColumn, conditionOneRow);
return targetApp.FindAll(
TreeScope.Descendants, conditionSingleItemGrid);
}
'''--------------------------------------------------------------------
''' <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 conditionSupportsGridPattern As New PropertyCondition( _
AutomationElement.IsGridPatternAvailableProperty, True)
Dim conditionOneColumn As New PropertyCondition( _
GridPattern.ColumnCountProperty, 1)
Dim conditionOneRow As New PropertyCondition( _
GridPattern.RowCountProperty, 1)
Dim conditionSingleItemGrid As New AndCondition( _
conditionSupportsGridPattern, conditionOneColumn, conditionOneRow)
Return targetApp.FindAll( _
TreeScope.Descendants, conditionSingleItemGrid)
End Function 'FindAutomationElement
설명
이 식별자는 UI 자동화 클라이언트 애플리케이션에서 사용 됩니다. UI 자동화 공급자의 해당 필드를 사용 해야 GridPatternIdentifiers합니다.