1 instantiation of TableParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\TableParaClient.cs (1)
497return new TableParagraphResult(this);
24 references to TableParagraphResult
PresentationFramework (24)
MS\Internal\Documents\TextDocumentView.cs (21)
785else if (paragraph is TableParagraphResult) 787ReadOnlyCollection<ParagraphResult> rowParagraphs = ((TableParagraphResult)paragraph).Paragraphs; 801ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, snapToText); 1015else if (paragraph is TableParagraphResult) 1017ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, false); 1025cellInfo = ((TableParagraphResult)paragraph).GetCellInfoFromPoint(point); 1154else if (paragraph is TableParagraphResult) 1162ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1170rect = ((TableParagraphResult)paragraph).GetRectangleFromRowEndPosition(position); 1296else if (paragraphs[i] is TableParagraphResult) 1298paragraphGeometry = ((TableParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1477else if (paragraph is TableParagraphResult) 1479ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1601else if (paragraph is TableParagraphResult) 1603ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1721else if (paragraph is TableParagraphResult) 1723ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2311else if (paragraph is TableParagraphResult) 2314ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2527else if (paragraphs[paragraphIndex] is TableParagraphResult tableResult) // c) TableParagraph - process nested paragraphs. 2790else if (paragraphs[paragraphIndex] is TableParagraphResult tableResult)
MS\Internal\LayoutDump.cs (3)
705else if (paragraph is TableParagraphResult) 707DumpTableParagraphResult(writer, (TableParagraphResult)paragraph, visualParent); 826private static void DumpTableParagraphResult(XmlTextWriter writer, TableParagraphResult paragraph, Visual visualParent)