37 references to Row
PresentationFramework (37)
MS\Internal\PtsHost\RowParagraph.cs (27)
111
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
142
if (
Row
.Index == 0 && Table.IsFirstNonEmptyRowGroup(
Row
.RowGroup.Index))
151
if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(
Row
.RowGroup.Index))
163
rowprops.cCells =
Row
.FormatCellCount;
193
Debug.Assert(cCells ==
Row
.FormatCellCount);
222
Invariant.Assert(cCells ==
Row
.FormatCellCount);
229
Invariant.Assert(cCells >=
Row
.Cells.Count); // Protect against buffer overflow
235
for (int j = 0; j <
Row
.Cells.Count; ++j)
237
TableCell cell =
Row
.Cells[j];
253
bool lastRow =
Row
.Index ==
Row
.RowGroup.Rows.Count - 1;
262
if (cell.RowIndex ==
Row
.Index)
268
else if (
Row
.Index - cell.RowIndex + 1 < cell.RowSpan)
276
Debug.Assert(
Row
.Index - cell.RowIndex + 1 == cell.RowSpan);
293
if(
Row
.Index != 0 && Previous != null)
300
_cellParagraphs = new CellParagraph[
Row
.Cells.Count];
302
for(int cellIndex = 0; cellIndex <
Row
.Cells.Count; cellIndex++)
304
_cellParagraphs[cellIndex] = new CellParagraph(
Row
.Cells[cellIndex], StructuralCache);
309
if (
Row
.SpannedCells != null)
311
_spannedCells = new CellParagraph[
Row
.SpannedCells.Length];
320
_spannedCells[index] = FindCellParagraphForCell(rowPrevious,
Row
.SpannedCells[index]);
329
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
331
if (
Row
.HasRealCells ||
365
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)
310
TableRow currentRow = ((RowParagraph)prevParagraph).
Row
;