1 instantiation of CellParagraph
PresentationFramework (1)
MS\Internal\PtsHost\RowParagraph.cs (1)
304_cellParagraphs[cellIndex] = new CellParagraph(Row.Cells[cellIndex], StructuralCache);
22 references to CellParagraph
PresentationFramework (22)
MS\Internal\LayoutDump.cs (1)
957CellParagraph cellParagraph = cellParaClient.CellParagraph;
MS\Internal\PtsHost\CellParaClient.cs (3)
40internal CellParaClient(CellParagraph cellParagraph, TableParaClient tableParaClient) : base(cellParagraph) 402internal CellParagraph CellParagraph { get { return (CellParagraph)_paragraph; } }
MS\Internal\PtsHost\PtsHost.cs (10)
3688CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3881CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3923CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3967CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4028CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph;
MS\Internal\PtsHost\RowParagraph.cs (7)
300_cellParagraphs = new CellParagraph[Row.Cells.Count]; 311_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 315_spannedCells = Array.Empty<CellParagraph>(); 370internal CellParagraph[] Cells { get { return _cellParagraphs; } } 388private CellParagraph FindCellParagraphForCell(RowParagraph previousRow, TableCell cell) 424private CellParagraph[] _cellParagraphs; // collection of cells belonging to the row 425private CellParagraph[] _spannedCells; // row spanned cell storage
MS\Internal\PtsHost\TableParagraph.cs (1)
507CellParagraph cellParagraph = rowParagraph.Cells[iCell];