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