1 instantiation of ContainerParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\ContainerParaClient.cs (1)
260return new ContainerParagraphResult(this);
27 references to ContainerParagraphResult
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (22)
752if (paragraph is ContainerParagraphResult) 755ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1011if (paragraph is ContainerParagraphResult) 1014ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1156if (paragraph is ContainerParagraphResult) 1163ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1314if (paragraphs[i] is ContainerParagraphResult) 1316paragraphGeometry = ((ContainerParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1490if (paragraph is ContainerParagraphResult) 1493ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1616if (paragraph is ContainerParagraphResult) 1619ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1740if (paragraph is ContainerParagraphResult) 1743ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2316if (paragraph is ContainerParagraphResult) 2319ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2463if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2467ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 2805if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2810ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 3154else if (paragraph is ContainerParagraphResult) 3156ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
MS\Internal\LayoutDump.cs (3)
703else if (paragraph is ContainerParagraphResult) 705DumpContainerParagraphResult(writer, (ContainerParagraphResult)paragraph, visualParent); 757private static void DumpContainerParagraphResult(XmlTextWriter writer, ContainerParagraphResult paragraph, Visual visualParent)
System\Windows\Controls\Primitives\BulletDecorator.cs (2)
357ContainerParagraphResult cpr = pr[0] as ContainerParagraphResult;