35 references to RowGroup
PresentationFramework (35)
MS\Internal\PtsHost\RowParagraph.cs (5)
110bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1); 141if (Row.Index == 0 && Table.IsFirstNonEmptyRowGroup(Row.RowGroup.Index)) 150if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(Row.RowGroup.Index)) 252bool lastRow = Row.Index == Row.RowGroup.Rows.Count - 1; 328bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (11)
278if(rowParagraph.Row.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup)) 536row.RowGroup, ElementEdge.BeforeStart)); 569if (row.Index == row.RowGroup.Rows.Count - 1) 571row.RowGroup, ElementEdge.AfterEnd)); 1344(row.Index == 0) && Table.IsFirstNonEmptyRowGroup(row.RowGroup.Index); 1354(row.Index == row.RowGroup.Rows.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index); 1836TableRowGroup tableRowGroup = row.RowGroup; 1842if (tableRowGroup != row.RowGroup) 1854tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (1)
310TableRowGroup currentRowGroup = currentRow.RowGroup;
System\Windows\Documents\TableCell.cs (1)
409return (Row.RowGroup.Index);
System\Windows\Documents\TableRow.cs (1)
268internal Table Table { get { return (RowGroup?.Table); } }
System\windows\Documents\TextEditorTyping.cs (2)
1405TableRowGroup body = row.RowGroup; 1440TableRowGroup body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (13)
329TableRowGroup rowGroup = anchorCell.Row.RowGroup; 446Invariant.Assert(anchorCell.Row.RowGroup == movingCell.Row.RowGroup, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup"); 465TableRowCollection rows = row.RowGroup.Rows; 1145TableRowGroup rowGroup = currentRow.RowGroup; 1228if (startRow == null || endRow == null || startRow.RowGroup != endRow.RowGroup) 1233TableRowCollection rows = startRow.RowGroup.Rows; 1845Invariant.Assert(startCell.Row.RowGroup == endCell.Row.RowGroup, "startCell and endCell must belong to the same RowGroup"); 1850TextRange result = MergeCellRange(startCell.Row.RowGroup, // 1903TableRowGroup rowGroup = startCell.Row.RowGroup; 2489row.RowGroup.Rows.Remove(row);
System\windows\Documents\TextSelection.cs (1)
1032rowGroup = movingCell.Row.RowGroup;