1 instantiation of ContainerParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\ContainerParaClient.cs (1)
255return new ContainerParagraphResult(this);
27 references to ContainerParagraphResult
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (22)
750if (paragraph is ContainerParagraphResult) 753ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1009if (paragraph is ContainerParagraphResult) 1012ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1154if (paragraph is ContainerParagraphResult) 1161ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1312if (paragraphs[i] is ContainerParagraphResult) 1314paragraphGeometry = ((ContainerParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1488if (paragraph is ContainerParagraphResult) 1491ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1614if (paragraph is ContainerParagraphResult) 1617ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1738if (paragraph is ContainerParagraphResult) 1741ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2314if (paragraph is ContainerParagraphResult) 2317ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2461if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2465ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 2803if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2808ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 3152else if (paragraph is ContainerParagraphResult) 3154ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
MS\Internal\LayoutDump.cs (3)
700else if (paragraph is ContainerParagraphResult) 702DumpContainerParagraphResult(writer, (ContainerParagraphResult)paragraph, visualParent); 754private static void DumpContainerParagraphResult(XmlTextWriter writer, ContainerParagraphResult paragraph, Visual visualParent)
System\Windows\Controls\Primitives\BulletDecorator.cs (2)
351ContainerParagraphResult cpr = pr[0] as ContainerParagraphResult;