32 references to End
PresentationFramework (32)
src\Framework\System\Windows\Controls\TextBox.cs (2)
833return TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End); 887int selectionLength = TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.End);
src\Framework\System\windows\Documents\TextEditorCharacters.cs (1)
102!TextRangeEdit.CanApplyStructuralInlineProperty(selection.Start, selection.End))
src\Framework\System\windows\Documents\TextEditorLists.cs (4)
270TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue); 275TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 326TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue); 331TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.End, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue);
src\Framework\System\windows\Documents\TextEditorTyping.cs (1)
1136TextPointer newEnd = ((TextSelection)This.Selection).End;
src\Framework\System\Windows\Documents\TextPointer.cs (1)
65/// <see cref="TextRange.Start"/> and <see cref="TextRange.End"/>, etc.
src\Framework\System\Windows\Documents\TextRange.cs (2)
1684TextRangeEdit.CharacterResetFormatting((TextPointer)this.Start, (TextPointer)this.End); 1704return TextRangeEditTables.InsertTable((TextPointer)this.End, rowCount, columnCount);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
1384TextRangeEdit.SetParagraphProperty(range.Start, range.End, Block.MarginProperty, thickness, propertyValueAction);
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (7)
249TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 280TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End); 342ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 393TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 400ListItem lastListItem = TextPointerBase.GetImmediateListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 454ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End)); 591TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.End);
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (8)
1125TextPointer currentRowPosition = rowCount > 0 ? textRange.End : textRange.Start; 1228TableRow endRow = GetTableRowFromPosition(textRange.End); 1443if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1452endCell = GetTableCellFromPosition(textRange.End); 1544textRange.Start, textRange.End, 1837if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable)) 1860textRange.Select(textRange.Start, textRange.End); 1888if (!IdentifyTableElements(textRange.Start, textRange.End, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable))
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (3)
1291TextPointer insertionPosition = TextRangeEditTables.EnsureInsertionPosition(range.End); 1320range.Select(range.Start, range.End); 1576((Section)fragment).HasTrailingParagraphBreakOnPaste = range.End.GetPointerContext(LogicalDirection.Forward) != TextPointerContext.None;
src\Framework\System\windows\Documents\TextSelection.cs (2)
1459if (this.End.GetNonMergeableInlineAncestor() != ancestor) 1557Invariant.Assert(this.End.LogicalDirection == LogicalDirection.Forward);