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