1 instantiation of TableParagraphResult
PresentationFramework (1)
MS\Internal\PtsHost\TableParaClient.cs (1)
498return new TableParagraphResult(this);
28 references to TableParagraphResult
PresentationFramework (28)
MS\Internal\Documents\TextDocumentView.cs (25)
787else if (paragraph is TableParagraphResult) 789ReadOnlyCollection<ParagraphResult> rowParagraphs = ((TableParagraphResult)paragraph).Paragraphs; 803ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, snapToText); 1020else if (paragraph is TableParagraphResult) 1022ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPoint(point, false); 1030cellInfo = ((TableParagraphResult)paragraph).GetCellInfoFromPoint(point); 1174else if (paragraph is TableParagraphResult) 1182ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1190rect = ((TableParagraphResult)paragraph).GetRectangleFromRowEndPosition(position); 1320else if (paragraphs[i] is TableParagraphResult) 1322paragraphGeometry = ((TableParagraphResult)paragraphs[i]).GetTightBoundingGeometryFromTextPositions(startPosition, endPosition, visibleRect); 1504else if (paragraph is TableParagraphResult) 1506ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1631else if (paragraph is TableParagraphResult) 1633ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 1754else if (paragraph is TableParagraphResult) 1756ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2347else if (paragraph is TableParagraphResult) 2350ReadOnlyCollection<ParagraphResult> nestedParagraphs = ((TableParagraphResult)paragraph).GetParagraphsFromPosition(position); 2566else if (paragraphs[paragraphIndex] is TableParagraphResult) 2569TableParagraphResult tableResult = (TableParagraphResult)paragraphs[paragraphIndex]; 2831else if (paragraphs[paragraphIndex] is TableParagraphResult) 2833TableParagraphResult tableResult = (TableParagraphResult)paragraphs[paragraphIndex];
MS\Internal\LayoutDump.cs (3)
704else if (paragraph is TableParagraphResult) 706DumpTableParagraphResult(writer, (TableParagraphResult)paragraph, visualParent); 825private static void DumpTableParagraphResult(XmlTextWriter writer, TableParagraphResult paragraph, Visual visualParent)