32 references to End
PresentationFramework (32)
System\Windows\Controls\TextBox.cs (2)
799return TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End); 847int selectionLength = TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End);
System\windows\Documents\TextEditorCharacters.cs (1)
84!TextRangeEdit.CanApplyStructuralInlineProperty(selection.Start, selection.End))
System\windows\Documents\TextEditorLists.cs (4)
252TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue); 257TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 308TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 313TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue);
System\windows\Documents\TextEditorTyping.cs (1)
1101TextPointer newEnd = ((TextSelection)This.Selection).End;
System\Windows\Documents\TextPointer.cs (1)
58/// <see cref="TextRange.Start"/> and <see cref="TextRange.End"/>, etc.
System\Windows\Documents\TextRange.cs (2)
1677TextRangeEdit.CharacterResetFormatting((TextPointer)this.Start, (TextPointer)this.End); 1697return TextRangeEditTables.InsertTable((TextPointer)this.End, rowCount, columnCount);
System\Windows\Documents\TextRangeEdit.cs (1)
1380TextRangeEdit.SetParagraphProperty(range.Start, range.End, Block.MarginProperty, thickness, propertyValueAction);
System\Windows\Documents\TextRangeEditLists.cs (7)
245TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 276TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 340ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 391TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 398ListItem lastListItem = TextPointerBase.GetImmediateListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 452ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 589TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End);
System\Windows\Documents\TextRangeEditTables.cs (8)
1124TextPointer currentRowPosition = rowCount > 0 ? textRange.End : textRange.Start; 1227TableRow endRow = GetTableRowFromPosition(textRange.End); 1442if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1451endCell = GetTableCellFromPosition(textRange.End); 1543textRange.Start, textRange.End, 1836if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1859textRange.Select(textRange.Start, textRange.End); 1887if (!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)
1261TextPointer insertionPosition = TextRangeEditTables.EnsureInsertionPosition(range.End); 1290range.Select(range.Start, range.End); 1550((Section)fragment).HasTrailingParagraphBreakOnPaste = range.End.GetPointerContext(LogicalDirection.Forward) != TextPointerContext.None;
System\windows\Documents\TextSelection.cs (2)
1438if (this.End.GetNonMergeableInlineAncestor() != ancestor) 1536Invariant.Assert(this.End.LogicalDirection == LogicalDirection.Forward);