1 instantiation of ContainerParagraphResult
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\ContainerParaClient.cs (1)
301return new ContainerParagraphResult(this);
27 references to ContainerParagraphResult
PresentationFramework (27)
src\Framework\MS\Internal\Documents\TextDocumentView.cs (22)
760if (paragraph is ContainerParagraphResult) 763ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1019if (paragraph is ContainerParagraphResult) 1022ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1164if (paragraph is ContainerParagraphResult) 1171ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1322if (paragraphs[i] is ContainerParagraphResult) 1324paragraphGeometry = ((ContainerParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1498if (paragraph is ContainerParagraphResult) 1501ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1624if (paragraph is ContainerParagraphResult) 1627ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1748if (paragraph is ContainerParagraphResult) 1751ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2324if (paragraph is ContainerParagraphResult) 2327ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2471if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2475ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 2814if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2819ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 3163else if (paragraph is ContainerParagraphResult) 3165ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
src\Framework\MS\Internal\LayoutDump.cs (3)
706else if (paragraph is ContainerParagraphResult) 708DumpContainerParagraphResult(writer, (ContainerParagraphResult)paragraph, visualParent); 760private static void DumpContainerParagraphResult(XmlTextWriter writer, ContainerParagraphResult paragraph, Visual visualParent)
src\Framework\System\Windows\Controls\Primitives\BulletDecorator.cs (2)
358ContainerParagraphResult cpr = pr[0] as ContainerParagraphResult;