37 references to Row
PresentationFramework (37)
MS\Internal\PtsHost\RowParagraph.cs (27)
111
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
141
if (
Row
.Index == 0 && Table.IsFirstNonEmptyRowGroup(
Row
.RowGroup.Index))
150
if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(
Row
.RowGroup.Index))
162
rowprops.cCells =
Row
.FormatCellCount;
192
Debug.Assert(cCells ==
Row
.FormatCellCount);
221
Invariant.Assert(cCells ==
Row
.FormatCellCount);
228
Invariant.Assert(cCells >=
Row
.Cells.Count); // Protect against buffer overflow
234
for (int j = 0; j <
Row
.Cells.Count; ++j)
236
TableCell cell =
Row
.Cells[j];
252
bool lastRow =
Row
.Index ==
Row
.RowGroup.Rows.Count - 1;
261
if (cell.RowIndex ==
Row
.Index)
267
else if (
Row
.Index - cell.RowIndex + 1 < cell.RowSpan)
275
Debug.Assert(
Row
.Index - cell.RowIndex + 1 == cell.RowSpan);
292
if(
Row
.Index != 0 && Previous != null)
299
_cellParagraphs = new CellParagraph[
Row
.Cells.Count];
301
for(int cellIndex = 0; cellIndex <
Row
.Cells.Count; cellIndex++)
303
_cellParagraphs[cellIndex] = new CellParagraph(
Row
.Cells[cellIndex], StructuralCache);
308
if (
Row
.SpannedCells != null)
310
_spannedCells = new CellParagraph[
Row
.SpannedCells.Length];
319
_spannedCells[index] = FindCellParagraphForCell(rowPrevious,
Row
.SpannedCells[index]);
328
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
330
if (
Row
.HasRealCells ||
364
internal Table Table { get { return
Row
.Table; } }
MS\Internal\PtsHost\TableParaClient.cs (9)
248
row = rowParagraph.
Row
;
279
if(rowParagraph.
Row
.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup))
526
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1133
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1337
TableRow row = rowParagraph.
Row
;
1347
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[arrayTableRowDesc.Length - 1].fsnmRow))).
Row
;
1836
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[0].fsnmRow))).
Row
;
1841
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1891
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
MS\Internal\PtsHost\TableParagraph.cs (1)
315
TableRow currentRow = ((RowParagraph)prevParagraph).
Row
;