1 instantiation of CellParagraph
PresentationFramework (1)
MS\Internal\PtsHost\RowParagraph.cs (1)
303_cellParagraphs[cellIndex] = new CellParagraph(Row.Cells[cellIndex], StructuralCache);
22 references to CellParagraph
PresentationFramework (22)
MS\Internal\LayoutDump.cs (1)
956CellParagraph cellParagraph = cellParaClient.CellParagraph;
MS\Internal\PtsHost\CellParaClient.cs (3)
39internal CellParaClient(CellParagraph cellParagraph, TableParaClient tableParaClient) : base(cellParagraph) 401internal CellParagraph CellParagraph { get { return (CellParagraph)_paragraph; } }
MS\Internal\PtsHost\PtsHost.cs (10)
3687CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3880CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3922CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3966CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4027CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph;
MS\Internal\PtsHost\RowParagraph.cs (7)
299_cellParagraphs = new CellParagraph[Row.Cells.Count]; 310_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 314_spannedCells = Array.Empty<CellParagraph>(); 369internal CellParagraph[] Cells { get { return _cellParagraphs; } } 387private CellParagraph FindCellParagraphForCell(RowParagraph previousRow, TableCell cell) 423private CellParagraph[] _cellParagraphs; // collection of cells belonging to the row 424private CellParagraph[] _spannedCells; // row spanned cell storage
MS\Internal\PtsHost\TableParagraph.cs (1)
506CellParagraph cellParagraph = rowParagraph.Cells[iCell];