38 references to Start
PresentationFramework (38)
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (3)
331
int elementStartOffset = _structuralCache.TextContainer.
Start
.GetOffsetToPosition(elementStart);
974
if (!(_structuralCache.TextContainer.
Start
is TextPointer) ||
981
TextPointer searchPosition = new TextPointer(_structuralCache.TextContainer.
Start
as TextPointer);
src\Framework\MS\Internal\PtsHost\TextParaClient.cs (6)
782
int cp = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition((TextPointer)position);
952
int cp = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition(position as TextPointer);
1012
int cp = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition(position as TextPointer);
1065
int cp = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition(position as TextPointer);
1280
int dcpStart = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition((TextPointer)start) - Paragraph.ParagraphStartCharacterPosition;
1281
int dcpEnd = Paragraph.StructuralCache.TextContainer.
Start
.GetOffsetToPosition((TextPointer)end) - Paragraph.ParagraphStartCharacterPosition;
src\Framework\System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (2)
81
return TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.
Start
, owner.TextContainer.End, null);
93
return TextContainerHelper.GetAutomationPeersFromRange(start, end, owner.TextContainer.
Start
);
src\Framework\System\Windows\Controls\AccessText.cs (4)
74
return new RangeContentEnumerator(TextContainer.
Start
, TextContainer.End);
575
TextPointer navigator = new TextPointer(TextContainer.
Start
);
621
navigator = new TextPointer(TextContainer.
Start
);
726
TextContainer.DeleteContentInternal((TextPointer)TextContainer.
Start
, TextContainer.End);
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (2)
185
TextSelectionInternal.Select(_textContainer.
Start
, _textContainer.End);
1578
position = snapToText ? this.TextContainer.
Start
: null;
src\Framework\System\Windows\Controls\TextBox.cs (6)
207
this.TextContainer.DeleteContentInternal((TextPointer)this.TextContainer.
Start
, (TextPointer)this.TextContainer.End);
208
TextSelectionInternal.Select(this.TextContainer.
Start
, this.TextContainer.
Start
);
1069
return new RangeContentEnumerator((TextPointer)this.TextContainer.
Start
, (TextPointer)this.TextContainer.End);
1346
return (TextPointer)this.TextContainer.
Start
;
1653
TextContainer.DeleteContentInternal((TextPointer)TextContainer.
Start
, (TextPointer)TextContainer.End);
src\Framework\System\Windows\Documents\ColumnResizeUndoUnit.cs (2)
28
_cpTable = _textContainer.
Start
.GetOffsetToPosition(textPointerTable);
52
textPointerTable = new TextPointer(_textContainer.
Start
, _cpTable, LogicalDirection.Forward);
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
231
/// <see cref="TextContainer.
Start
"/>
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
200
/// <see cref="TextContainer.
Start
"/>
src\Framework\System\Windows\Documents\FlowDocument.cs (3)
183
return _structuralCache.TextContainer.
Start
;
849
return new RangeContentEnumerator(_structuralCache.TextContainer.
Start
, _structuralCache.TextContainer.End);
969
TextPointer childStart = new TextPointer(_structuralCache.TextContainer.
Start
);
src\Framework\System\Windows\Documents\TextContainer.cs (2)
1728
return this.
Start
;
2492
newTreeStart = tree.
Start
;
src\Framework\System\Windows\Documents\TextEffectResolver.cs (1)
86
effectCopy.PositionStart = effectStart.TextContainer.
Start
.GetOffsetToPosition(effectStart);
src\Framework\System\Windows\Documents\TextElement.cs (1)
1625
start = tree.
Start
;
src\Framework\System\Windows\Documents\TextElementCollection.cs (1)
997
this.Parent is TextElement ? ((TextElement)this.Parent).ContentStart : this.TextContainer.
Start
;
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1707
return TextContainer.
Start
;
src\Framework\System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (2)
489
_cpTable = table.TextContainer.
Start
.GetOffsetToPosition(table.ContentStart);
499
TextPointer textPointerTable = new TextPointer(navigator.TextContainer.
Start
, _cpTable, LogicalDirection.Forward);