2 writes to _spannedCells
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (2)
329_spannedCells = new CellParagraph[Row.SpannedCells.Length]; 333_spannedCells = new CellParagraph[0];
13 references to _spannedCells
PresentationFramework (13)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (13)
266Invariant.Assert(cCells == i + _spannedCells.Length); // Protect against buffer overflow 269if (_spannedCells.Length > 0) 273for (int j = 0; j < _spannedCells.Length; ++j) 275Debug.Assert (_spannedCells[j] != null); 277TableCell cell = _spannedCells[j].Cell; 278rgnmCell[i] = _spannedCells[j].Handle; 325Invariant.Assert(_spannedCells == null); 336for(int index = 0; index < _spannedCells.Length; index++) 338_spannedCells[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]); 350(isLastRowOfRowGroup && _spannedCells.Length > 0)) 418for(int index = 0; index < previousRow._spannedCells.Length; index++) 420if(previousRow._spannedCells[index].Cell == cell) 422return previousRow._spannedCells[index];