1 instantiation of TableParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\TableParaClient.cs (1)
498return new TableParagraphResult(this);
24 references to TableParagraphResult
PresentationFramework (24)
MS\Internal\Documents\TextDocumentView.cs (21)
786else if (paragraph is TableParagraphResult) 788ReadOnlyCollection<ParagraphResult> rowParagraphs = ((TableParagraphResult)paragraph).Paragraphs; 802ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, snapToText); 1016else if (paragraph is TableParagraphResult) 1018ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, false); 1026cellInfo = ((TableParagraphResult)paragraph).GetCellInfoFromPoint(point); 1155else if (paragraph is TableParagraphResult) 1163ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1171rect = ((TableParagraphResult)paragraph).GetRectangleFromRowEndPosition(position); 1297else if (paragraphs[i] is TableParagraphResult) 1299paragraphGeometry = ((TableParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1478else if (paragraph is TableParagraphResult) 1480ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1602else if (paragraph is TableParagraphResult) 1604ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1722else if (paragraph is TableParagraphResult) 1724ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2312else if (paragraph is TableParagraphResult) 2315ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2528else if (paragraphs[paragraphIndex] is TableParagraphResult tableResult) // c) TableParagraph - process nested paragraphs. 2791else if (paragraphs[paragraphIndex] is TableParagraphResult tableResult)
MS\Internal\LayoutDump.cs (3)
706else if (paragraph is TableParagraphResult) 708DumpTableParagraphResult(writer, (TableParagraphResult)paragraph, visualParent); 827private static void DumpTableParagraphResult(XmlTextWriter writer, TableParagraphResult paragraph, Visual visualParent)