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)
266
Invariant.Assert(cCells == i +
_spannedCells
.Length); // Protect against buffer overflow
269
if (
_spannedCells
.Length > 0)
273
for (int j = 0; j <
_spannedCells
.Length; ++j)
275
Debug.Assert (
_spannedCells
[j] != null);
277
TableCell cell =
_spannedCells
[j].Cell;
278
rgnmCell[i] =
_spannedCells
[j].Handle;
325
Invariant.Assert(
_spannedCells
== null);
336
for(int index = 0; index <
_spannedCells
.Length; index++)
338
_spannedCells
[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]);
350
(isLastRowOfRowGroup &&
_spannedCells
.Length > 0))
418
for(int index = 0; index < previousRow.
_spannedCells
.Length; index++)
420
if(previousRow.
_spannedCells
[index].Cell == cell)
422
return previousRow.
_spannedCells
[index];