1 instantiation of CellParagraph
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (1)
322_cellParagraphs[cellIndex] = new CellParagraph(Row.Cells[cellIndex], StructuralCache);
22 references to CellParagraph
PresentationFramework (22)
src\Framework\MS\Internal\LayoutDump.cs (1)
961CellParagraph cellParagraph = cellParaClient.CellParagraph;
src\Framework\MS\Internal\PtsHost\CellParaClient.cs (3)
50internal CellParaClient(CellParagraph cellParagraph, TableParaClient tableParaClient) : base(cellParagraph) 434internal CellParagraph CellParagraph { get { return (CellParagraph)_paragraph; } }
src\Framework\MS\Internal\PtsHost\PtsHost.cs (10)
3949CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4158CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4200CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4244CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4305CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph;
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (7)
318_cellParagraphs = new CellParagraph[Row.Cells.Count]; 329_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 333_spannedCells = new CellParagraph[0]; 388internal CellParagraph[] Cells { get { return _cellParagraphs; } } 406private CellParagraph FindCellParagraphForCell(RowParagraph previousRow, TableCell cell) 442private CellParagraph[] _cellParagraphs; // collection of cells belonging to the row 443private CellParagraph[] _spannedCells; // row spanned cell storage
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (1)
524CellParagraph cellParagraph = rowParagraph.Cells[iCell];