36 references to RowGroup
PresentationFramework (36)
MS\Internal\PtsHost\RowParagraph.cs (5)
115bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1); 145if (Row.Index == 0 && Table.IsFirstNonEmptyRowGroup(Row.RowGroup.Index)) 154if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(Row.RowGroup.Index)) 256bool lastRow = Row.Index == Row.RowGroup.Rows.Count - 1; 332bool isLastRowOfRowGroup = (Row.Index == Row.RowGroup.Rows.Count - 1);
MS\Internal\PtsHost\TableParaClient.cs (11)
285if(rowParagraph.Row.HasForeignCells && (rowPrevious == null || rowPrevious.RowGroup != row.RowGroup)) 543row.RowGroup, ElementEdge.BeforeStart)); 576if (row.Index == row.RowGroup.Rows.Count - 1) 578row.RowGroup, ElementEdge.AfterEnd)); 1351(row.Index == 0) && Table.IsFirstNonEmptyRowGroup(row.RowGroup.Index); 1361(row.Index == row.RowGroup.Rows.Count - 1) && Table.IsLastNonEmptyRowGroup(row.RowGroup.Index); 1843TableRowGroup tableRowGroup = row.RowGroup; 1849if (tableRowGroup != row.RowGroup) 1861tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (1)
324TableRowGroup currentRowGroup = currentRow.RowGroup;
System\Windows\Documents\TableCell.cs (1)
429return (Row.RowGroup.Index);
System\Windows\Documents\TableRow.cs (2)
287internal Table Table { get { return (RowGroup != null ? RowGroup.Table : null); } }
System\windows\Documents\TextEditorTyping.cs (2)
1427TableRowGroup body = row.RowGroup; 1462TableRowGroup body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (13)
332TableRowGroup rowGroup = anchorCell.Row.RowGroup; 449Invariant.Assert(anchorCell.Row.RowGroup == movingCell.Row.RowGroup, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup"); 468TableRowCollection rows = row.RowGroup.Rows; 1144TableRowGroup rowGroup = currentRow.RowGroup; 1227if (startRow == null || endRow == null || startRow.RowGroup != endRow.RowGroup) 1232TableRowCollection rows = startRow.RowGroup.Rows; 1844Invariant.Assert(startCell.Row.RowGroup == endCell.Row.RowGroup, "startCell and endCell must belong to the same RowGroup"); 1849TextRange result = MergeCellRange(startCell.Row.RowGroup, // 1902TableRowGroup rowGroup = startCell.Row.RowGroup; 2488row.RowGroup.Rows.Remove(row);
System\windows\Documents\TextSelection.cs (1)
1051rowGroup = movingCell.Row.RowGroup;