32 references to End
PresentationFramework (32)
System\Windows\Controls\TextBox.cs (2)
798return TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End); 846int selectionLength = TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End);
System\windows\Documents\TextEditorCharacters.cs (1)
83!TextRangeEdit.CanApplyStructuralInlineProperty(selection.Start, selection.End))
System\windows\Documents\TextEditorLists.cs (4)
251TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue); 256TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 307TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 312TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue);
System\windows\Documents\TextEditorTyping.cs (1)
1100TextPointer newEnd = ((TextSelection)This.Selection).End;
System\Windows\Documents\TextPointer.cs (1)
57/// <see cref="TextRange.Start"/> and <see cref="TextRange.End"/>, etc.
System\Windows\Documents\TextRange.cs (2)
1676TextRangeEdit.CharacterResetFormatting((TextPointer)this.Start, (TextPointer)this.End); 1696return TextRangeEditTables.InsertTable((TextPointer)this.End, rowCount, columnCount);
System\Windows\Documents\TextRangeEdit.cs (1)
1379TextRangeEdit.SetParagraphProperty(range.Start, range.End, Block.MarginProperty, thickness, propertyValueAction);
System\Windows\Documents\TextRangeEditLists.cs (7)
244TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 275TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 339ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 390TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 397ListItem lastListItem = TextPointerBase.GetImmediateListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 451ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 588TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End);
System\Windows\Documents\TextRangeEditTables.cs (8)
1123TextPointer currentRowPosition = rowCount > 0 ? textRange.End : textRange.Start; 1226TableRow endRow = GetTableRowFromPosition(textRange.End); 1441if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1450endCell = GetTableCellFromPosition(textRange.End); 1542textRange.Start, textRange.End, 1835if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1858textRange.Select(textRange.Start, textRange.End); 1886if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable))
System\Windows\Documents\TextRangeSerialization.cs (3)
1260TextPointer insertionPosition = TextRangeEditTables.EnsureInsertionPosition(range.End); 1289range.Select(range.Start, range.End); 1549((Section)fragment).HasTrailingParagraphBreakOnPaste = range.End.GetPointerContext(LogicalDirection.Forward) != TextPointerContext.None;
System\windows\Documents\TextSelection.cs (2)
1437if (this.End.GetNonMergeableInlineAncestor() != ancestor) 1535Invariant.Assert(this.End.LogicalDirection == LogicalDirection.Forward);