2 writes to _spannedCells
PresentationFramework (2)
MS\Internal\PtsHost\RowParagraph.cs (2)
314_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 318_spannedCells = Array.Empty<CellParagraph>();
13 references to _spannedCells
PresentationFramework (13)
MS\Internal\PtsHost\RowParagraph.cs (13)
251Invariant.Assert(cCells == i + _spannedCells.Length); // Protect against buffer overflow 254if (_spannedCells.Length > 0) 258for (int j = 0; j < _spannedCells.Length; ++j) 260Debug.Assert (_spannedCells[j] != null); 262TableCell cell = _spannedCells[j].Cell; 263rgnmCell[i] = _spannedCells[j].Handle; 310Invariant.Assert(_spannedCells == null); 321for(int index = 0; index < _spannedCells.Length; index++) 323_spannedCells[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]); 335(isLastRowOfRowGroup && _spannedCells.Length > 0)) 403for(int index = 0; index < previousRow._spannedCells.Length; index++) 405if(previousRow._spannedCells[index].Cell == cell) 407return previousRow._spannedCells[index];