1 instantiation of TableParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\TableParaClient.cs (1)
504return new TableParagraphResult(this);
28 references to TableParagraphResult
PresentationFramework (28)
MS\Internal\Documents\TextDocumentView.cs (25)
789else if (paragraph is TableParagraphResult) 791ReadOnlyCollection<ParagraphResult> rowParagraphs = ((TableParagraphResult)paragraph).Paragraphs; 805ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, snapToText); 1022else if (paragraph is TableParagraphResult) 1024ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, false); 1032cellInfo = ((TableParagraphResult)paragraph).GetCellInfoFromPoint(point); 1176else if (paragraph is TableParagraphResult) 1184ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1192rect = ((TableParagraphResult)paragraph).GetRectangleFromRowEndPosition(position); 1322else if (paragraphs[i] is TableParagraphResult) 1324paragraphGeometry = ((TableParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1506else if (paragraph is TableParagraphResult) 1508ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1633else if (paragraph is TableParagraphResult) 1635ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1756else if (paragraph is TableParagraphResult) 1758ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2349else if (paragraph is TableParagraphResult) 2352ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2568else if (paragraphs[paragraphIndex] is TableParagraphResult) 2571TableParagraphResult tableResult = (TableParagraphResult)paragraphs[paragraphIndex]; 2833else if (paragraphs[paragraphIndex] is TableParagraphResult) 2835TableParagraphResult tableResult = (TableParagraphResult)paragraphs[paragraphIndex];
MS\Internal\LayoutDump.cs (3)
707else if (paragraph is TableParagraphResult) 709DumpTableParagraphResult(writer, (TableParagraphResult)paragraph, visualParent); 828private static void DumpTableParagraphResult(XmlTextWriter writer, TableParagraphResult paragraph, Visual visualParent)