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