Udostępnij za pośrednictwem


TextPointer.GetPointerContext(LogicalDirection) Metoda

Definicja

Zwraca wskaźnik kategorii dla zawartości sąsiadującej z prądem TextPointer w określonym kierunku logicznym.

public:
 System::Windows::Documents::TextPointerContext GetPointerContext(System::Windows::Documents::LogicalDirection direction);
public System.Windows.Documents.TextPointerContext GetPointerContext (System.Windows.Documents.LogicalDirection direction);
member this.GetPointerContext : System.Windows.Documents.LogicalDirection -> System.Windows.Documents.TextPointerContext
Public Function GetPointerContext (direction As LogicalDirection) As TextPointerContext

Parametry

direction
LogicalDirection

LogicalDirection Jedna z wartości określających kierunek logiczny, w którym należy określić kategorię dla sąsiedniej zawartości.

Zwraca

TextPointerContext

TextPointerContext Jedna z wartości wskazująca kategorię dla sąsiedniej zawartości w określonym kierunku logicznym.

Przykłady

W poniższym przykładzie pokazano użycie tej metody. W przykładzie użyto GetPointerContext metody w celu zaimplementowania algorytmu służącego do obliczania salda tagów elementów otwierania i zamykania między dwoma określonymi TextPointer pozycjami. Każdy tag elementu otwierającego jest liczone jako +1, a każdy tag zamykającego elementu jest liczone jako -1.

// Calculate and return the relative balance of opening and closing element tags
// between two specified TextPointers.
int GetElementTagBalance(TextPointer start, TextPointer end)
{
    int balance = 0;
 
    while (start != null && start.CompareTo(end) < 0)
    {
        TextPointerContext forwardContext = start.GetPointerContext(LogicalDirection.Forward);
 
        if (forwardContext == TextPointerContext.ElementStart)     balance++;
        else if (forwardContext == TextPointerContext.ElementEnd)  balance--;
             
        start = start.GetNextContextPosition(LogicalDirection.Forward);
    } // End while.
 
    return balance;
} // End GetElementTagBalance
' Calculate and return the relative balance of opening and closing element tags
' between two specified TextPointers.
Private Function GetElementTagBalance(ByVal start As TextPointer, ByVal [end] As TextPointer) As Integer
    Dim balance As Integer = 0

    Do While start IsNot Nothing AndAlso start.CompareTo([end]) < 0
        Dim forwardContext As TextPointerContext = start.GetPointerContext(LogicalDirection.Forward)

        If forwardContext = TextPointerContext.ElementStart Then
            balance += 1
        ElseIf forwardContext = TextPointerContext.ElementEnd Then
            balance -= 1
        End If

        start = start.GetNextContextPosition(LogicalDirection.Forward)

    Loop ' End while.

    Return balance

End Function ' End GetElementTagBalance

Dotyczy