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)
251
Invariant.Assert(cCells == i +
_spannedCells
.Length); // Protect against buffer overflow
254
if (
_spannedCells
.Length > 0)
258
for (int j = 0; j <
_spannedCells
.Length; ++j)
260
Debug.Assert (
_spannedCells
[j] != null);
262
TableCell cell =
_spannedCells
[j].Cell;
263
rgnmCell[i] =
_spannedCells
[j].Handle;
310
Invariant.Assert(
_spannedCells
== null);
321
for(int index = 0; index <
_spannedCells
.Length; index++)
323
_spannedCells
[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]);
335
(isLastRowOfRowGroup &&
_spannedCells
.Length > 0))
403
for(int index = 0; index < previousRow.
_spannedCells
.Length; index++)
405
if(previousRow.
_spannedCells
[index].Cell == cell)
407
return previousRow.
_spannedCells
[index];