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