1 instantiation of CellParagraph
PresentationFramework (1)
MS\Internal\PtsHost\RowParagraph.cs (1)
307_cellParagraphs[cellIndex] = new CellParagraph(Row.Cells[cellIndex], StructuralCache);
22 references to CellParagraph
PresentationFramework (22)
MS\Internal\LayoutDump.cs (1)
958CellParagraph cellParagraph = cellParaClient.CellParagraph;
MS\Internal\PtsHost\CellParaClient.cs (3)
45internal CellParaClient(CellParagraph cellParagraph, TableParaClient tableParaClient) : base(cellParagraph) 407internal CellParagraph CellParagraph { get { return (CellParagraph)_paragraph; } }
MS\Internal\PtsHost\PtsHost.cs (10)
3710CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3903CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3945CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 3989CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph; 4050CellParagraph cellParagraph = PtsContext.HandleToObject(nmCell) as CellParagraph;
MS\Internal\PtsHost\RowParagraph.cs (7)
303_cellParagraphs = new CellParagraph[Row.Cells.Count]; 314_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 318_spannedCells = Array.Empty<CellParagraph>(); 373internal CellParagraph[] Cells { get { return _cellParagraphs; } } 391private CellParagraph FindCellParagraphForCell(RowParagraph previousRow, TableCell cell) 427private CellParagraph[] _cellParagraphs; // collection of cells belonging to the row 428private CellParagraph[] _spannedCells; // row spanned cell storage
MS\Internal\PtsHost\TableParagraph.cs (1)
520CellParagraph cellParagraph = rowParagraph.Cells[iCell];