1 instantiation of ContainerParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\ContainerParaClient.cs (1)
254return new ContainerParagraphResult(this);
27 references to ContainerParagraphResult
PresentationFramework (27)
MS\Internal\Documents\TextDocumentView.cs (22)
748if (paragraph is ContainerParagraphResult) 751ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1004if (paragraph is ContainerParagraphResult) 1007ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1134if (paragraph is ContainerParagraphResult) 1141ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1288if (paragraphs[i] is ContainerParagraphResult) 1290paragraphGeometry = ((ContainerParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1461if (paragraph is ContainerParagraphResult) 1464ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1584if (paragraph is ContainerParagraphResult) 1587ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 1705if (paragraph is ContainerParagraphResult) 1708ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2278if (paragraph is ContainerParagraphResult) 2281ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs; 2422if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2426ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 2762if (paragraphs[paragraphIndex] is ContainerParagraphResult) 2767ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraphs[paragraphIndex]).Paragraphs; 3109else if (paragraph is ContainerParagraphResult) 3111ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((ContainerParagraphResult)paragraph).Paragraphs;
MS\Internal\LayoutDump.cs (3)
701else if (paragraph is ContainerParagraphResult) 703DumpContainerParagraphResult(writer, (ContainerParagraphResult)paragraph, visualParent); 755private static void DumpContainerParagraphResult(XmlTextWriter writer, ContainerParagraphResult paragraph, Visual visualParent)
System\Windows\Controls\Primitives\BulletDecorator.cs (2)
350ContainerParagraphResult cpr = pr[0] as ContainerParagraphResult;