5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
234
root = new
TableRowGroup
();
System\Windows\Documents\TextRangeEditTables.cs (2)
661
TableRowGroup rowGroup = new
TableRowGroup
();
824
TableRowGroup tableRowGroup = new
TableRowGroup
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9823
bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.
TableRowGroup
(); };
System\Windows\Markup\KnownTypes.cs (1)
1586
case KnownElements.TableRowGroup: o = new System.Windows.Documents.
TableRowGroup
(); break;
94 references to TableRowGroup
PresentationFramework (94)
MS\Internal\Documents\IIndexedChild.cs (1)
23
/// Note that <see cref="TableRow"/> also implements IIndexedChild with parent <see cref="
TableRowGroup
"/>
MS\Internal\PtsHost\TableParaClient.cs (1)
1837
TableRowGroup
tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (2)
269
TableRowGroup
rowGroup = Table.RowGroups[rowGroupIndex];
316
TableRowGroup
currentRowGroup = currentRow.RowGroup;
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\FixedElement.cs (1)
394
return typeof(
TableRowGroup
);
System\Windows\Documents\Table.cs (3)
69
TableRowGroup
rowGroup = value as
TableRowGroup
;
76
throw (new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(
TableRowGroup
)), "value"));
System\Windows\Documents\TableRow.cs (12)
23
public class TableRow : TextElement, IAddChild, IIndexedChild<
TableRowGroup
>, IAcceptInsertion
88
if (newParent != null && !(newParent is
TableRowGroup
))
95
((
TableRowGroup
)oldParent).Rows.InternalRemove(this);
102
((
TableRowGroup
)newParent).Rows.InternalAdd(this);
129
void IIndexedChild<
TableRowGroup
>.OnEnterParentTree()
137
void IIndexedChild<
TableRowGroup
>.OnExitParentTree()
142
void IIndexedChild<
TableRowGroup
>.OnAfterExitParentTree(
TableRowGroup
parent)
146
int IIndexedChild<
TableRowGroup
>.Index
175
internal void OnAfterExitParentTree(
TableRowGroup
rowGroup)
261
internal
TableRowGroup
RowGroup
265
return (Parent as
TableRowGroup
);
System\Windows\Documents\TableRowCollection.cs (3)
31
internal TableRowCollection(
TableRowGroup
owner)
33
_rowCollectionInternal = new TableTextElementCollectionInternal<
TableRowGroup
, TableRow>(owner);
556
private TableTextElementCollectionInternal<
TableRowGroup
, TableRow> _rowCollectionInternal;
System\Windows\Documents\TableRowGroupCollection.cs (19)
21
public sealed class TableRowGroupCollection : IList<
TableRowGroup
>, IList
33
_rowGroupCollectionInternal = new TableTextElementCollectionInternal<Table,
TableRowGroup
>(owner);
82
public void CopyTo(
TableRowGroup
[] array, int index)
98
IEnumerator<
TableRowGroup
> IEnumerable<
TableRowGroup
>.GetEnumerator()
100
return ((IEnumerable<
TableRowGroup
>)_rowGroupCollectionInternal).GetEnumerator();
115
public void Add(
TableRowGroup
item)
140
public bool Contains(
TableRowGroup
item)
150
public int IndexOf(
TableRowGroup
item)
179
public void Insert(int index,
TableRowGroup
item)
199
public bool Remove(
TableRowGroup
item)
435
public
TableRowGroup
this[int index]
454
internal void InternalAdd(
TableRowGroup
item)
462
internal void InternalRemove(
TableRowGroup
item)
499
private void PrivateConnectChild(int index,
TableRowGroup
item)
509
private void PrivateDisconnectChild(
TableRowGroup
item)
515
private bool BelongsToOwner(
TableRowGroup
item)
522
private int FindInsertionIndex(
TableRowGroup
item)
555
private TableTextElementCollectionInternal<Table,
TableRowGroup
> _rowGroupCollectionInternal;
System\windows\Documents\TextEditorTyping.cs (2)
1418
TableRowGroup
body = row.RowGroup;
1453
TableRowGroup
body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (32)
189
TableRowGroup
anchorRowGroup;
190
TableRowGroup
movingRowGroup;
233
TableRowGroup
anchorRowGroup;
234
TableRowGroup
movingRowGroup;
290
TableRowGroup
anchorRowGroup;
291
TableRowGroup
movingRowGroup;
330
TableRowGroup
rowGroup = anchorCell.Row.RowGroup;
661
TableRowGroup
rowGroup = new TableRowGroup();
824
TableRowGroup
tableRowGroup = new TableRowGroup();
830
if (parent is
TableRowGroup
)
950
TableRowGroup
startRowGroup;
951
TableRowGroup
endRowGroup;
1142
TableRowGroup
rowGroup = currentRow.RowGroup;
1364
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1434
TableRowGroup
startRowGroup;
1435
TableRowGroup
endRowGroup;
1485
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1828
TableRowGroup
startRowGroup;
1829
TableRowGroup
endRowGroup;
1879
TableRowGroup
startRowGroup;
1880
TableRowGroup
endRowGroup;
1900
TableRowGroup
rowGroup = startCell.Row.RowGroup;
2045
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2130
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2169
out
TableRowGroup
rowGroup,
2198
else if (element is
TableRowGroup
)
2200
rowGroup = (
TableRowGroup
)element;
2338
private static TextRange MergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2359
private static bool CanMergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2418
private static TextRange DoMergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
System\Windows\Documents\TextRangeSerialization.cs (1)
1722
typeof(
TableRowGroup
).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (7)
193
else if (typeof(
TableRowGroup
).IsAssignableFrom(newType))
195
return typeof(
TableRowGroup
).IsAssignableFrom(siblingType);
435
else if (typeof(
TableRowGroup
).IsAssignableFrom(type))
437
return typeof(
TableRowGroup
);
549
else if (typeof(
TableRowGroup
).IsAssignableFrom(type))
851
return typeof(
TableRowGroup
).IsAssignableFrom(childType);
853
else if (typeof(
TableRowGroup
).IsAssignableFrom(parentType))
System\windows\Documents\TextSelection.cs (1)
1028
TableRowGroup
rowGroup;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
724
case 630: t = () => typeof(
TableRowGroup
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5873
Type type = typeof(System.Windows.Documents.
TableRowGroup
);
5875
this.GetXamlType(typeof(System.Windows.Documents.
TableRowGroup
)), // DeclaringType
5881
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.
TableRowGroup
)target).Rows; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9821
typeof(System.Windows.Documents.
TableRowGroup
),
System\Windows\Markup\KnownTypes.cs (2)
2532
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.
TableRowGroup
).Rows;
6184
case KnownElements.TableRowGroup: t = typeof(System.Windows.Documents.
TableRowGroup
); break;