19 references to Parent
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (1)
49
parent = textContainer.
Parent
;
MS\Internal\PtsHost\StructuralCache.cs (2)
40
Invariant.Assert(textContainer.
Parent
!= null);
237
return _textContainer.
Parent
;
System\Windows\Controls\TextBlock.cs (1)
3713
DependencyObject parent = te.TextContainer.
Parent
;
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
267
/// <see cref="TextContainer.
Parent
"/>
System\Windows\Documents\FixedTextContainer.cs (1)
235
/// <see cref="TextContainer.
Parent
"/>
System\Windows\Documents\Run.cs (1)
276
FlowDocument document = run.TextContainer.
Parent
as FlowDocument;
System\Windows\Documents\TextContainer.cs (3)
1742
return this.
Parent
;
3478
return (this.
Parent
!= null) ? this.
Parent
.Dispatcher : null;
System\Windows\Documents\TextPointer.cs (3)
1418
if (this.TextContainer.
Parent
!= null)
1420
Type containerType = this.TextContainer.
Parent
.GetType();
3793
return ((FrameworkElement)_tree.
Parent
);
System\Windows\Documents\TextRangeEdit.cs (4)
592
Invariant.Assert(position.TextContainer.
Parent
== null || TextSchema.IsValidChildOfContainer(position.TextContainer.
Parent
.GetType(), typeof(Paragraph)));
619
Invariant.Assert(position.TextContainer.
Parent
== null);
793
DependencyObject parent = start.TextContainer.
Parent
;
System\Windows\Documents\TextTreeNode.cs (2)
311
parent = ((TextTreeRootNode)node).TextContainer.
Parent
; // This may be null.
354
logicalTreeNode = ((TextTreeRootNode)node).TextContainer.
Parent
;