2 writes to _spannedCells
PresentationFramework (2)
MS\Internal\PtsHost\RowParagraph.cs (2)
310_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 314_spannedCells = Array.Empty<CellParagraph>();
13 references to _spannedCells
PresentationFramework (13)
MS\Internal\PtsHost\RowParagraph.cs (13)
247Invariant.Assert(cCells == i + _spannedCells.Length); // Protect against buffer overflow 250if (_spannedCells.Length > 0) 254for (int j = 0; j < _spannedCells.Length; ++j) 256Debug.Assert (_spannedCells[j] != null); 258TableCell cell = _spannedCells[j].Cell; 259rgnmCell[i] = _spannedCells[j].Handle; 306Invariant.Assert(_spannedCells == null); 317for(int index = 0; index < _spannedCells.Length; index++) 319_spannedCells[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]); 331(isLastRowOfRowGroup && _spannedCells.Length > 0)) 399for(int index = 0; index < previousRow._spannedCells.Length; index++) 401if(previousRow._spannedCells[index].Cell == cell) 403return previousRow._spannedCells[index];