21 references to RowGroups
PresentationFramework (21)
MS\Internal\PtsHost\TableParagraph.cs (5)
275
for(int rowGroupIndex = 0; rowGroupIndex < Table.
RowGroups
.Count && tableRow == null; rowGroupIndex++)
277
TableRowGroup rowGroup = Table.
RowGroups
[rowGroupIndex];
316
Debug.Assert(Table.
RowGroups
.Count > 0);
340
if(nextRowGroupIndex == Table.
RowGroups
.Count)
345
TableRowCollection Rows = Table.
RowGroups
[nextRowGroupIndex].Rows;
System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
96
foreach (TableRowGroup group in ((Table)Owner).
RowGroups
)
136
foreach (TableRowGroup group in table.
RowGroups
)
System\Windows\Documents\Table.cs (4)
81
RowGroups
.Add(rowGroup);
316
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
334
while(rowGroupIndex <
RowGroups
.Count)
336
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
System\Windows\Documents\TableRowGroup.cs (2)
327
((Table)oldParent).
RowGroups
.InternalRemove(this);
335
((Table)newParent).
RowGroups
.InternalAdd(this);
System\Windows\Documents\TextRangeEditTables.cs (5)
677
table.
RowGroups
.Add(rowGroup);
1364
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1366
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
1485
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1487
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
System\windows\Documents\TextSelection.cs (1)
1387
TextPointer cellStart = table.
RowGroups
[0].Rows[0].Cells[0].ContentStart;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5832
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Table)target).
RowGroups
; };
System\Windows\Markup\KnownTypes.cs (1)
2529
case KnownElements.Table: return (o as System.Windows.Documents.Table).
RowGroups
;