다음을 통해 공유


TextPatternRange.GetText(Int32) 메서드

정의

텍스트 범위의 일반 텍스트를 반환합니다.

public:
 System::String ^ GetText(int maxLength);
public string GetText (int maxLength);
member this.GetText : int -> string
Public Function GetText (maxLength As Integer) As String

매개 변수

maxLength
Int32

반환할 문자열의 최대 길이입니다. 제한할 필요가 없으면 -1 을 사용합니다.

반환

텍스트 범위의 일반 문자열이며, 지정된 maxLength로 잘릴 수 있습니다.

예외

maxLength가 -1보다 작은 경우입니다.

예제

 private String TextFromSelection(AutomationElement target, Int32 length)
{
    // Specify the control type we're looking for, in this case 'Document'
    PropertyCondition cond = new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document);

    // target --> The root AutomationElement.
    AutomationElement textProvider = target.FindFirst(TreeScope.Descendants, cond);

    TextPattern textpatternPattern = textProvider.GetCurrentPattern(TextPattern.Pattern) as TextPattern;

    if (textpatternPattern == null)
    {
        Console.WriteLine("Root element does not contain a descendant that supports TextPattern.");
        return null;
    }
    TextPatternRange[] currentSelection = textpatternPattern.GetSelection();

    // GetText(-1) retrieves all characters but can be inefficient
    return currentSelection[0].GetText(length);
}
Private Function TextFromSelection(ByVal target As AutomationElement, ByVal length As Int32) As String
    ' Specify the control type we're looking for, in this case 'Document'
    Dim cond As PropertyCondition = New PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Document)

    ' target --> The root AutomationElement.
    Dim textProvider As AutomationElement = target.FindFirst(TreeScope.Descendants, cond)

    Dim textpatternPattern As TextPattern = CType(textProvider.GetCurrentPattern(TextPattern.Pattern), TextPattern)

    If (textpatternPattern Is Nothing) Then
        Console.WriteLine("Root element does not contain a descendant that supports TextPattern.")
        Return Nothing
    End If
    Dim currentSelection As TextPatternRange() = textpatternPattern.GetSelection()
    ' GetText(-1) retrieves all characters but can be inefficient
    Return currentSelection(0).GetText(length)
End Function

설명

GetText 숨겨진 / 표시 텍스트를 따릅니다. UI 자동화 클라이언트가 확인할 수는 IsHiddenAttribute 텍스트 표시에 대 한 합니다.

경우 maxLength 길이 보다 크면 호출자의 텍스트 범위를 반환 하는 문자열 텍스트 범위의 일반 텍스트 됩니다.

GetText 엔드포인트 텍스트 흐름; 순서로 적용 되지 않습니다. 항상 논리 텍스트 흐름 순서로 텍스트 범위의 시작 및 종료 엔드포인트 사이의 텍스트를 반환 합니다.

적용 대상

추가 정보