36 references to RowGroup
PresentationFramework (36)
src\Framework\MS\Internal\PtsHost\RowParagraph.cs (5)
121
bool isLastRowOfRowGroup = (Row.Index == Row.
RowGroup
.Rows.Count - 1);
151
if (Row.Index == 0 && Table.IsFirstNonEmptyRowGroup(Row.
RowGroup
.Index))
160
if (isLastRowOfRowGroup && Table.IsLastNonEmptyRowGroup(Row.
RowGroup
.Index))
271
bool lastRow = Row.Index == Row.
RowGroup
.Rows.Count - 1;
347
bool isLastRowOfRowGroup = (Row.Index == Row.
RowGroup
.Rows.Count - 1);
src\Framework\MS\Internal\PtsHost\TableParaClient.cs (11)
305
if(rowParagraph.Row.HasForeignCells && (rowPrevious == null || rowPrevious.
RowGroup
!= row.
RowGroup
))
586
row.
RowGroup
, ElementEdge.BeforeStart));
619
if (row.Index == row.
RowGroup
.Rows.Count - 1)
621
row.
RowGroup
, ElementEdge.AfterEnd));
1442
(row.Index == 0) && Table.IsFirstNonEmptyRowGroup(row.
RowGroup
.Index);
1452
(row.Index == row.
RowGroup
.Rows.Count - 1) && Table.IsLastNonEmptyRowGroup(row.
RowGroup
.Index);
1959
TableRowGroup tableRowGroup = row.
RowGroup
;
1965
if (tableRowGroup != row.
RowGroup
)
1977
tableRowGroup = row.
RowGroup
;
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (1)
328
TableRowGroup currentRowGroup = currentRow.
RowGroup
;
src\Framework\System\Windows\Documents\TableCell.cs (1)
436
return (Row.
RowGroup
.Index);
src\Framework\System\Windows\Documents\TableRow.cs (2)
296
internal Table Table { get { return (
RowGroup
!= null ?
RowGroup
.Table : null); } }
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1444
TableRowGroup body = row.
RowGroup
;
1479
TableRowGroup body = row.
RowGroup
;
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (13)
335
TableRowGroup rowGroup = anchorCell.Row.
RowGroup
;
452
Invariant.Assert(anchorCell.Row.
RowGroup
== movingCell.Row.
RowGroup
, "anchorCell.Row.RowGroup == movingCell.Row.RowGroup");
471
TableRowCollection rows = row.
RowGroup
.Rows;
1147
TableRowGroup rowGroup = currentRow.
RowGroup
;
1230
if (startRow == null || endRow == null || startRow.
RowGroup
!= endRow.
RowGroup
)
1235
TableRowCollection rows = startRow.
RowGroup
.Rows;
1847
Invariant.Assert(startCell.Row.
RowGroup
== endCell.Row.
RowGroup
, "startCell and endCell must belong to the same RowGroup");
1852
TextRange result = MergeCellRange(startCell.Row.
RowGroup
, //
1905
TableRowGroup rowGroup = startCell.Row.
RowGroup
;
2491
row.
RowGroup
.Rows.Remove(row);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1054
rowGroup = movingCell.Row.
RowGroup
;