TextPointer.CompareTo(TextPointer) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Выполнение порядкового сравнения между положениями, указанными текущим TextPointer и вторым указанным TextPointer.
public:
int CompareTo(System::Windows::Documents::TextPointer ^ position);
public int CompareTo (System.Windows.Documents.TextPointer position);
member this.CompareTo : System.Windows.Documents.TextPointer -> int
Public Function CompareTo (position As TextPointer) As Integer
Параметры
- position
- TextPointer
TextPointer, который указывает положение для сравнения с текущим положением.
Возвращаемое значение
-1 если текущий TextPointer предшествует position
; 0 если расположения те же; +1 если текущий TextPointer следует за position
.
Исключения
position
указывает положение за пределами текстового контейнера, связанного с текущим положением.
Примеры
В следующем примере показано использование этого метода. В этом примере метод используется в сочетании с методом GetInsertionPosition для проверки того, CompareTo является ли указанный TextElement пустым.
// Tests to see if the specified TextElement is empty (has no printatble content).
bool IsElementEmpty(TextElement element)
{
// Find starting and ending insertion positions in the element.
// Inward-facing directions are used to make sure that insertion position
// will be found correctly in case when the element may contain inline
// formatting elements (such as a Span or Run that contains Bold or Italic elements).
TextPointer start = element.ContentStart.GetInsertionPosition(LogicalDirection.Forward);
TextPointer end = element.ContentEnd.GetInsertionPosition(LogicalDirection.Backward);
// The element has no printable content if its first and last insertion positions are equal.
return start.CompareTo(end) == 0;
} // End IsEmptyElement method.
' Tests to see if the specified TextElement is empty (has no printatble content).
Private Function IsElementEmpty(ByVal element As TextElement) As Boolean
' Find starting and ending insertion positions in the element.
' Inward-facing directions are used to make sure that insertion position
' will be found correctly in case when the element may contain inline
' formatting elements (such as a Span or Run that contains Bold or Italic elements).
Dim start As TextPointer = element.ContentStart.GetInsertionPosition(LogicalDirection.Forward)
Dim [end] As TextPointer = element.ContentEnd.GetInsertionPosition(LogicalDirection.Backward)
' The element has no printable content if its first and last insertion positions are equal.
Return start.CompareTo([end]) = 0
End Function ' End IsEmptyElement method.
Комментарии
Значение -1 указывает, что позиция, указанная текущим TextPointer , предшествует позиции, заданной параметром position
. Значение 0 указывает, что указанные позиции равны. Значение положительного значения +1 указывает, что позиция, указанная текущим TextPointer , следует позиции, заданной параметром position
.