ScrollPattern.VerticallyScrollableProperty 필드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
VerticallyScrollable 속성을 식별합니다.
public: static initonly System::Windows::Automation::AutomationProperty ^ VerticallyScrollableProperty;
public static readonly System.Windows.Automation.AutomationProperty VerticallyScrollableProperty;
staticval mutable VerticallyScrollableProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly VerticallyScrollableProperty As AutomationProperty
필드 값
예제
다음 예제에서는 루트 요소 컬렉션을 반환 하는 함수에 전달 됩니다 AutomationElement루트의 후손이 속성 조건 집합을 만족 하는 합니다.
///--------------------------------------------------------------------
/// <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 conditionSupportsScroll =
new PropertyCondition(
AutomationElement.IsScrollPatternAvailableProperty, true);
PropertyCondition conditionHorizontallyScrollable =
new PropertyCondition(
ScrollPattern.HorizontallyScrollableProperty, true);
PropertyCondition conditionVerticallyScrollable =
new PropertyCondition(
ScrollPattern.VerticallyScrollableProperty, true);
// Use any combination of the preceding conditions to
// find the control(s) of interest
Condition condition = new AndCondition(
conditionSupportsScroll,
conditionHorizontallyScrollable,
conditionVerticallyScrollable);
return targetApp.FindAll(TreeScope.Descendants, condition);
}
'''--------------------------------------------------------------------
''' <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 conditionSupportsScroll As New PropertyCondition( _
AutomationElement.IsScrollPatternAvailableProperty, True)
Dim conditionHorizontallyScrollable As New PropertyCondition( _
ScrollPattern.HorizontallyScrollableProperty, True)
Dim conditionVerticallyScrollable As New PropertyCondition( _
ScrollPattern.VerticallyScrollableProperty, True)
' Use any combination of the preceding conditions to
' find the control(s) of interest
Dim condition As AndCondition = New AndCondition( _
conditionSupportsScroll, _
conditionHorizontallyScrollable, _
conditionVerticallyScrollable)
Return targetApp.FindAll(TreeScope.Descendants, condition)
End Function 'FindAutomationElement
설명
이 식별자는 UI 자동화 클라이언트 애플리케이션에서 사용 됩니다. UI 자동화 공급자의 해당 필드를 사용 해야 ScrollPatternIdentifiers합니다.