37 references to Row
PresentationFramework (37)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (27)
121
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
151
if (
Row
.Index == 0 && Table.IsFirstNonEmptyRowGroup(
Row
.RowGroup.Index))
160
if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(
Row
.RowGroup.Index))
172
rowprops.cCells =
Row
.FormatCellCount;
206
Debug.Assert(cCells ==
Row
.FormatCellCount);
240
Invariant.Assert(cCells ==
Row
.FormatCellCount);
247
Invariant.Assert(cCells >=
Row
.Cells.Count); // Protect against buffer overflow
253
for (int j = 0; j <
Row
.Cells.Count; ++j)
255
TableCell cell =
Row
.Cells[j];
271
bool lastRow =
Row
.Index ==
Row
.RowGroup.Rows.Count - 1;
280
if (cell.RowIndex ==
Row
.Index)
286
else if (
Row
.Index - cell.RowIndex + 1 < cell.RowSpan)
294
Debug.Assert(
Row
.Index - cell.RowIndex + 1 == cell.RowSpan);
311
if(
Row
.Index != 0 && Previous != null)
318
_cellParagraphs = new CellParagraph[
Row
.Cells.Count];
320
for(int cellIndex = 0; cellIndex <
Row
.Cells.Count; cellIndex++)
322
_cellParagraphs[cellIndex] = new CellParagraph(
Row
.Cells[cellIndex], StructuralCache);
327
if (
Row
.SpannedCells != null)
329
_spannedCells = new CellParagraph[
Row
.SpannedCells.Length];
338
_spannedCells[index] = FindCellParagraphForCell(rowPrevious,
Row
.SpannedCells[index]);
347
bool isLastRowOfRowGroup = (
Row
.Index ==
Row
.RowGroup.Rows.Count - 1);
349
if (
Row
.HasRealCells ||
383
internal Table Table { get { return
Row
.Table; } }
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (9)
274
row = rowParagraph.
Row
;
305
if(rowParagraph.
Row
.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup))
575
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1226
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
1434
TableRow row = rowParagraph.
Row
;
1444
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[arrayTableRowDesc.Length - 1].fsnmRow))).
Row
;
1958
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[0].fsnmRow))).
Row
;
1963
row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
2018
TableRow row = ((RowParagraph)(PtsContext.HandleToObject(arrayTableRowDesc[iR].fsnmRow))).
Row
;
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (1)
327
TableRow currentRow = ((RowParagraph)prevParagraph).
Row
;