36 references to RowGroup
PresentationFramework (36)
MS\Internal\PtsHost\RowParagraph.cs (5)
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)) 252bool lastRow = Row.Index == Row.RowGroup.Rows.Count - 1; 328bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (11)
279if(rowParagraph.Row.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup)) 537row.RowGroup, ElementEdge.BeforeStart)); 570if (row.Index == row.RowGroup.Rows.Count - 1) 572row.RowGroup, ElementEdge.AfterEnd)); 1345(row.Index == 0) && Table.IsFirstNonEmptyRowGroup(row.RowGroup.Index); 1355(row.Index == row.RowGroup.Rows.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index); 1837TableRowGroup tableRowGroup = row.RowGroup; 1843if (tableRowGroup != row.RowGroup) 1855tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (1)
316TableRowGroup currentRowGroup = currentRow.RowGroup;
System\Windows\Documents\TableCell.cs (1)
416return (Row.RowGroup.Index);
System\Windows\Documents\TableRow.cs (2)
272internal Table Table { get { return (RowGroup != null ? RowGroup.Table : null); } }
System\windows\Documents\TextEditorTyping.cs (2)
1418TableRowGroup body = row.RowGroup; 1453TableRowGroup body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (13)
330TableRowGroup rowGroup = anchorCell.Row.RowGroup; 447Invariant.Assert(anchorCell.Row.RowGroup == movingCell.Row.RowGroup, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup"); 466TableRowCollection rows = row.RowGroup.Rows; 1142TableRowGroup rowGroup = currentRow.RowGroup; 1225if (startRow == null || endRow == null || startRow.RowGroup != endRow.RowGroup) 1230TableRowCollection rows = startRow.RowGroup.Rows; 1842Invariant.Assert(startCell.Row.RowGroup == endCell.Row.RowGroup, "startCell and endCell must belong to the same RowGroup"); 1847TextRange result = MergeCellRange(startCell.Row.RowGroup, // 1900TableRowGroup rowGroup = startCell.Row.RowGroup; 2486row.RowGroup.Rows.Remove(row);
System\windows\Documents\TextSelection.cs (1)
1048rowGroup = movingCell.Row.RowGroup;