37 references to Row
PresentationFramework (37)
MS\Internal\PtsHost\RowParagraph.cs (27)
115
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
145
if (
Row
.Index == 0 && Table.IsFirstNonEmptyRowGroup(
Row
.RowGroup.Index))
154
if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(
Row
.RowGroup.Index))
166
rowprops.cCells =
Row
.FormatCellCount;
196
Debug.Assert(cCells ==
Row
.FormatCellCount);
225
Invariant.Assert(cCells ==
Row
.FormatCellCount);
232
Invariant.Assert(cCells >=
Row
.Cells.Count); // Protect against buffer overflow
238
for (int j = 0; j <
Row
.Cells.Count; ++j)
240
TableCell cell =
Row
.Cells[j];
256
bool lastRow =
Row
.Index ==
Row
.RowGroup.Rows.Count - 1;
265
if (cell.RowIndex ==
Row
.Index)
271
else if (
Row
.Index - cell.RowIndex + 1 < cell.RowSpan)
279
Debug.Assert(
Row
.Index - cell.RowIndex + 1 == cell.RowSpan);
296
if(
Row
.Index != 0 && Previous != null)
303
_cellParagraphs = new CellParagraph[
Row
.Cells.Count];
305
for(int cellIndex = 0; cellIndex <
Row
.Cells.Count; cellIndex++)
307
_cellParagraphs[cellIndex] = new CellParagraph(
Row
.Cells[cellIndex], StructuralCache);
312
if (
Row
.SpannedCells != null)
314
_spannedCells = new CellParagraph[
Row
.SpannedCells.Length];
323
_spannedCells[index] = FindCellParagraphForCell(rowPrevious,
Row
.SpannedCells[index]);
332
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
334
if (
Row
.HasRealCells ||
368
internal Table Table { get { return
Row
.Table; } }
MS\Internal\PtsHost\TableParaClient.cs (9)
254
row = rowParagraph.
Row
;
285
if(rowParagraph.
Row
.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup))
532
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1139
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1343
TableRow row = rowParagraph.
Row
;
1353
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[arrayTableRowDesc.Length - 1].fsnmRow))).
Row
;
1842
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[0].fsnmRow))).
Row
;
1847
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1897
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
MS\Internal\PtsHost\TableParagraph.cs (1)
323
TableRow currentRow = ((RowParagraph)prevParagraph).
Row
;