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)
749if (paragraph is ContainerParagraphResult) 752ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1005if (paragraph is ContainerParagraphResult) 1008ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1144if (paragraph is ContainerParagraphResult) 1151ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1298if (paragraphs[i] is ContainerParagraphResult) 1300paragraphGeometry = ((ContainerParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1471if (paragraph is ContainerParagraphResult) 1474ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1594if (paragraph is ContainerParagraphResult) 1597ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1715if (paragraph is ContainerParagraphResult) 1718ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2288if (paragraph is ContainerParagraphResult) 2291ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2432if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2436ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 2772if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2777ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 3119else if (paragraph is ContainerParagraphResult) 3121ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
MS\Internal\LayoutDump.cs (3)
702else if (paragraph is ContainerParagraphResult) 704DumpContainerParagraphResult(writer, (ContainerParagraphResult)paragraph, visualParent); 756private static void DumpContainerParagraphResult(XmlTextWriter writer, ContainerParagraphResult paragraph, Visual visualParent)
System\Windows\Controls\Primitives\BulletDecorator.cs (2)
351ContainerParagraphResult cpr = pr[0] as ContainerParagraphResult;