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)
248
Invariant.Assert(cCells == i +
_spannedCells
.Length); // Protect against buffer overflow
251
if (
_spannedCells
.Length > 0)
255
for (int j = 0; j <
_spannedCells
.Length; ++j)
257
Debug.Assert (
_spannedCells
[j] != null);
259
TableCell cell =
_spannedCells
[j].Cell;
260
rgnmCell[i] =
_spannedCells
[j].Handle;
307
Invariant.Assert(
_spannedCells
== null);
318
for(int index = 0; index <
_spannedCells
.Length; index++)
320
_spannedCells
[index] = FindCellParagraphForCell(rowPrevious, Row.SpannedCells[index]);
332
(isLastRowOfRowGroup &&
_spannedCells
.Length > 0))
400
for(int index = 0; index < previousRow.
_spannedCells
.Length; index++)
402
if(previousRow.
_spannedCells
[index].Cell == cell)
404
return previousRow.
_spannedCells
[index];