Sdílet prostřednictvím


TextPattern.GetVisibleRanges Metoda

Definice

Načte pole oddělených oblastí textu z textového kontejneru, kde každá oblast textu začíná prvním částečně viditelným řádkem až na konec posledního částečně viditelného řádku.

public:
 cli::array <System::Windows::Automation::Text::TextPatternRange ^> ^ GetVisibleRanges();
public System.Windows.Automation.Text.TextPatternRange[] GetVisibleRanges ();
member this.GetVisibleRanges : unit -> System.Windows.Automation.Text.TextPatternRange[]
Public Function GetVisibleRanges () As TextPatternRange()

Návraty

TextPatternRange[]

Kolekce viditelných oblastí textu v kontejneru nebo prázdném poli Null nikdy se nevrátí.

Příklady

private TextPatternRange[] CurrentVisibleRanges(AutomationElement target)
{
    // 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;
    }
    return textpatternPattern.GetVisibleRanges();
}
Private Function CurrentVisibleRanges(ByVal target As AutomationElement) As TextPatternRange()
    ' 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

    Return textpatternPattern.GetVisibleRanges()
End Function

Poznámky

Nesouvislé rozsahy textu mohou nastat, když je jakýkoli obsah textového kontejneru zakrytý překrývajícím se oknem nebo jiným objektem nebo když textový kontejner s rozložením s více sloupci má jeden nebo více sloupců částečně posunutý mimo zobrazení.

Pokud není žádný text viditelný, vrátí se degenerovaná (prázdná) oblast textu. Tato prázdná oblast se dá vrátit, pokud je textový kontejner prázdný nebo když se veškerý text posune mimo zobrazení.

Platí pro

Viz také