32 references to End
PresentationFramework (32)
System\Windows\Controls\TextBox.cs (2)
804
return TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.
End
);
852
int selectionLength = TextSelectionInternal.Start.GetOffsetToPosition(TextSelectionInternal.
End
);
System\windows\Documents\TextEditorCharacters.cs (1)
100
!TextRangeEdit.CanApplyStructuralInlineProperty(selection.Start, selection.
End
))
System\windows\Documents\TextEditorLists.cs (4)
268
TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.
End
, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue);
273
TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.
End
, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue);
324
TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.
End
, Paragraph.TextIndentProperty, 20.0, PropertyValueAction.SetValue);
329
TextRangeEdit.SetParagraphProperty(thisSelection.Start, thisSelection.
End
, Paragraph.TextIndentProperty, 0.0, PropertyValueAction.SetValue);
System\windows\Documents\TextEditorTyping.cs (1)
1119
TextPointer newEnd = ((TextSelection)This.Selection).
End
;
System\Windows\Documents\TextPointer.cs (1)
63
/// <see cref="TextRange.Start"/> and <see cref="TextRange.
End
"/>, etc.
System\Windows\Documents\TextRange.cs (2)
1687
TextRangeEdit.CharacterResetFormatting((TextPointer)this.Start, (TextPointer)this.
End
);
1707
return TextRangeEditTables.InsertTable((TextPointer)this.
End
, rowCount, columnCount);
System\Windows\Documents\TextRangeEdit.cs (1)
1382
TextRangeEdit.SetParagraphProperty(range.Start, range.
End
, Block.MarginProperty, thickness, propertyValueAction);
System\Windows\Documents\TextRangeEditLists.cs (7)
247
TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
);
278
TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
);
340
ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
));
391
TextRangeEdit.SetParagraphProperty(range.Start, range.
End
, Paragraph.FlowDirectionProperty, flowDirection);
398
ListItem lastListItem = TextPointerBase.GetImmediateListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
));
452
ListItem lastListItem = TextPointerBase.GetListItem((TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
));
589
TextPointer end = (TextPointer)TextRangeEdit.GetAdjustedRangeEnd(range.Start, range.
End
);
System\Windows\Documents\TextRangeEditTables.cs (8)
1122
TextPointer currentRowPosition = rowCount > 0 ? textRange.
End
: textRange.Start;
1225
TableRow endRow = GetTableRowFromPosition(textRange.
End
);
1440
if (!IdentifyTableElements(textRange.Start, textRange.
End
, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable))
1449
endCell = GetTableCellFromPosition(textRange.
End
);
1541
textRange.Start, textRange.
End
,
1834
if (!IdentifyTableElements(textRange.Start, textRange.
End
, /*includeCellAtMovingPosition:*/false, out startCell, out endCell, out startRow, out endRow, out startRowGroup, out endRowGroup, out startTable, out endTable))
1857
textRange.Select(textRange.Start, textRange.
End
);
1885
if (!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)
1267
TextPointer insertionPosition = TextRangeEditTables.EnsureInsertionPosition(range.
End
);
1296
range.Select(range.Start, range.
End
);
1556
((Section)fragment).HasTrailingParagraphBreakOnPaste = range.
End
.GetPointerContext(LogicalDirection.Forward) != TextPointerContext.None;
System\windows\Documents\TextSelection.cs (2)
1456
if (this.
End
.GetNonMergeableInlineAncestor() != ancestor)
1554
Invariant.Assert(this.
End
.LogicalDirection == LogicalDirection.Forward);