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