18 references to Parent
PresentationFramework (18)
MS\Internal\Documents\ContentHostHelper.cs (1)
48
parent = textContainer.
Parent
;
MS\Internal\PtsHost\StructuralCache.cs (2)
39
Invariant.Assert(textContainer.
Parent
!= null);
236
return _textContainer.
Parent
;
System\Windows\Controls\TextBlock.cs (1)
3703
DependencyObject parent = te.TextContainer.
Parent
;
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
258
/// <see cref="TextContainer.
Parent
"/>
System\Windows\Documents\FixedTextContainer.cs (1)
227
/// <see cref="TextContainer.
Parent
"/>
System\Windows\Documents\Run.cs (1)
266
FlowDocument document = run.TextContainer.
Parent
as FlowDocument;
System\Windows\Documents\TextContainer.cs (2)
1735
return this.
Parent
;
3450
return this.
Parent
?.Dispatcher;
System\Windows\Documents\TextPointer.cs (3)
1417
if (this.TextContainer.
Parent
!= null)
1419
Type containerType = this.TextContainer.
Parent
.GetType();
3792
return ((FrameworkElement)_tree.
Parent
);
System\Windows\Documents\TextRangeEdit.cs (4)
591
Invariant.Assert(position.TextContainer.
Parent
== null || TextSchema.IsValidChildOfContainer(position.TextContainer.
Parent
.GetType(), typeof(Paragraph)));
618
Invariant.Assert(position.TextContainer.
Parent
== null);
792
DependencyObject parent = start.TextContainer.
Parent
;
System\Windows\Documents\TextTreeNode.cs (2)
310
parent = ((TextTreeRootNode)node).TextContainer.
Parent
; // This may be null.
353
logicalTreeNode = ((TextTreeRootNode)node).TextContainer.
Parent
;