21 references to RowGroups
PresentationFramework (21)
src\Framework\MS\Internal\PtsHost\TableParagraph.cs (5)
279
for(int rowGroupIndex = 0; rowGroupIndex < Table.
RowGroups
.Count && tableRow == null; rowGroupIndex++)
281
TableRowGroup rowGroup = Table.
RowGroups
[rowGroupIndex];
320
Debug.Assert(Table.
RowGroups
.Count > 0);
344
if(nextRowGroupIndex == Table.
RowGroups
.Count)
349
TableRowCollection Rows = Table.
RowGroups
[nextRowGroupIndex].Rows;
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
97
foreach (TableRowGroup group in ((Table)Owner).
RowGroups
)
141
foreach (TableRowGroup group in table.
RowGroups
)
src\Framework\System\Windows\Documents\Table.cs (4)
89
RowGroups
.Add(rowGroup);
324
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
342
while(rowGroupIndex <
RowGroups
.Count)
344
if(
RowGroups
[rowGroupIndex].Rows.Count > 0)
src\Framework\System\Windows\Documents\TableRowGroup.cs (2)
336
((Table)oldParent).
RowGroups
.InternalRemove(this);
344
((Table)newParent).
RowGroups
.InternalAdd(this);
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (5)
680
table.
RowGroups
.Add(rowGroup);
1367
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1369
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
1488
for (int iRowGroup = 0; iRowGroup < table.
RowGroups
.Count; iRowGroup++)
1490
TableRowGroup rowGroup = table.
RowGroups
[iRowGroup];
src\Framework\System\windows\Documents\TextSelection.cs (1)
1390
TextPointer cellStart = table.
RowGroups
[0].Rows[0].Cells[0].ContentStart;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5790
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.Table)target).
RowGroups
; };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
2522
case KnownElements.Table: return (o as System.Windows.Documents.Table).
RowGroups
;