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)
247
Invariant.Assert(cCells == i +
_spannedCells
.Length); // Protect against buffer overflow
250
if (
_spannedCells
.Length > 0)
254
for (int j = 0; j <
_spannedCells
.Length; ++j)
256
Debug.Assert (
_spannedCells
[j] != null);
258
TableCell cell =
_spannedCells
[j].Cell;
259
rgnmCell[i] =
_spannedCells
[j].Handle;
306
Invariant.Assert(
_spannedCells
== null);
317
for(int index = 0; index <
_spannedCells
.Length; index++)
319
_spannedCells
[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]);
331
(isLastRowOfRowGroup &&
_spannedCells
.Length > 0))
399
for(int index = 0; index < previousRow.
_spannedCells
.Length; index++)
401
if(previousRow.
_spannedCells
[index].Cell == cell)
403
return previousRow.
_spannedCells
[index];