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