21 references to RowGroups
PresentationFramework (21)
MS\Internal\PtsHost\TableParagraph.cs (5)
261
for(int rowGroupIndex = 0; rowGroupIndex < Table.
RowGroups
.Count && tableRow == null; rowGroupIndex++)
263
TableRowGroup rowGroup = Table.
RowGroups
[rowGroupIndex];
302
Debug.Assert(Table.
RowGroups
.Count > 0);
326
if(nextRowGroupIndex == Table.
RowGroups
.Count)
331
TableRowCollection Rows = Table.
RowGroups
[nextRowGroupIndex].Rows;
System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
95
foreach (TableRowGroup group in ((Table)Owner).
RowGroups
)
135
foreach (TableRowGroup group in table.
RowGroups
)
System\Windows\Documents\Table.cs (4)
63
RowGroups
.Add(rowGroup);
295
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
313
while(rowGroupIndex <
RowGroups
.Count)
315
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
System\Windows\Documents\TableRowGroup.cs (2)
295
((Table)oldParent).
RowGroups
.InternalRemove(this);
303
((Table)newParent).
RowGroups
.InternalAdd(this);
System\Windows\Documents\TextRangeEditTables.cs (5)
678
table.
RowGroups
.Add(rowGroup);
1365
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1367
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
1486
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1488
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
System\windows\Documents\TextSelection.cs (1)
1368
TextPointer cellStart = table.
RowGroups
[0].Rows[0].Cells[0].ContentStart;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6234
GetDelegate = delegate (object target) { return ((System.Windows.Documents.Table)target).
RowGroups
; },
System\Windows\Markup\KnownTypes.cs (1)
2522
case KnownElements.Table: return (o as System.Windows.Documents.Table).
RowGroups
;