36 references to RowGroup
PresentationFramework (36)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (5)
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)) 271bool lastRow = Row.Index == Row.RowGroup.Rows.Count - 1; 347bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (11)
305if(rowParagraph.Row.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup)) 586row.RowGroup, ElementEdge.BeforeStart)); 619if (row.Index == row.RowGroup.Rows.Count - 1) 621row.RowGroup, ElementEdge.AfterEnd)); 1442(row.Index == 0) && Table.IsFirstNonEmptyRowGroup(row.RowGroup.Index); 1452(row.Index == row.RowGroup.Rows.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index); 1959TableRowGroup tableRowGroup = row.RowGroup; 1965if (tableRowGroup != row.RowGroup) 1977tableRowGroup = row.RowGroup;
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (1)
328TableRowGroup currentRowGroup = currentRow.RowGroup;
src\Framework\System\Windows\Documents\TableCell.cs (1)
436return (Row.RowGroup.Index);
src\Framework\System\Windows\Documents\TableRow.cs (2)
296internal Table Table { get { return (RowGroup != null ? RowGroup.Table : null); } }
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1444TableRowGroup body = row.RowGroup; 1479TableRowGroup body = row.RowGroup;
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (13)
335TableRowGroup rowGroup = anchorCell.Row.RowGroup; 452Invariant.Assert(anchorCell.Row.RowGroup == movingCell.Row.RowGroup, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup"); 471TableRowCollection rows = row.RowGroup.Rows; 1147TableRowGroup rowGroup = currentRow.RowGroup; 1230if (startRow == null || endRow == null || startRow.RowGroup != endRow.RowGroup) 1235TableRowCollection rows = startRow.RowGroup.Rows; 1847Invariant.Assert(startCell.Row.RowGroup == endCell.Row.RowGroup, "startCell and endCell must belong to the same RowGroup"); 1852TextRange result = MergeCellRange(startCell.Row.RowGroup, // 1905TableRowGroup rowGroup = startCell.Row.RowGroup; 2491row.RowGroup.Rows.Remove(row);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1054rowGroup = movingCell.Row.RowGroup;