2 writes to _spannedCells
PresentationFramework (2)
MS\Internal\PtsHost\RowParagraph.cs (2)
311_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 315_spannedCells = Array.Empty<CellParagraph>();
13 references to _spannedCells
PresentationFramework (13)
MS\Internal\PtsHost\RowParagraph.cs (13)
248Invariant.Assert(cCells == i + _spannedCells.Length); // Protect against buffer overflow 251if (_spannedCells.Length > 0) 255for (int j = 0; j < _spannedCells.Length; ++j) 257Debug.Assert (_spannedCells[j] != null); 259TableCell cell = _spannedCells[j].Cell; 260rgnmCell[i] = _spannedCells[j].Handle; 307Invariant.Assert(_spannedCells == null); 318for(int index = 0; index < _spannedCells.Length; index++) 320_spannedCells[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]); 332(isLastRowOfRowGroup && _spannedCells.Length > 0)) 400for(int index = 0; index < previousRow._spannedCells.Length; index++) 402if(previousRow._spannedCells[index].Cell == cell) 404return previousRow._spannedCells[index];