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