5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
236
root = new
TableRowGroup
();
System\Windows\Documents\TextRangeEditTables.cs (2)
663
TableRowGroup rowGroup = new
TableRowGroup
();
828
TableRowGroup tableRowGroup = new
TableRowGroup
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10896
DefaultConstructor = delegate () { return new System.Windows.Documents.
TableRowGroup
(); },
System\Windows\Markup\KnownTypes.cs (1)
1580
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)
264
TableRowGroup
rowGroup = Table.RowGroups[rowGroupIndex];
311
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)
400
return typeof(
TableRowGroup
);
System\Windows\Documents\Table.cs (3)
61
TableRowGroup
rowGroup = value as
TableRowGroup
;
68
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;
663
TableRowGroup
rowGroup = new TableRowGroup();
828
TableRowGroup
tableRowGroup = new TableRowGroup();
834
if (parent is
TableRowGroup
)
954
TableRowGroup
startRowGroup;
955
TableRowGroup
endRowGroup;
1146
TableRowGroup
rowGroup = currentRow.RowGroup;
1368
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1438
TableRowGroup
startRowGroup;
1439
TableRowGroup
endRowGroup;
1489
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1832
TableRowGroup
startRowGroup;
1833
TableRowGroup
endRowGroup;
1883
TableRowGroup
startRowGroup;
1884
TableRowGroup
endRowGroup;
1904
TableRowGroup
rowGroup = startCell.Row.RowGroup;
2049
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2134
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2173
out
TableRowGroup
rowGroup,
2202
else if (element is
TableRowGroup
)
2204
rowGroup = (
TableRowGroup
)element;
2342
private static TextRange MergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2363
private static bool CanMergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2422
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))
846
return typeof(
TableRowGroup
).IsAssignableFrom(childType);
848
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)
6283
Type type = typeof(System.Windows.Documents.
TableRowGroup
);
6285
this.GetXamlType(typeof(System.Windows.Documents.
TableRowGroup
)), // DeclaringType
6292
GetDelegate = delegate (object target) { return ((System.Windows.Documents.
TableRowGroup
)target).Rows; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10893
typeof(System.Windows.Documents.
TableRowGroup
),
System\Windows\Markup\KnownTypes.cs (2)
2526
case KnownElements.TableRowGroup: return (o as System.Windows.Documents.
TableRowGroup
).Rows;
6178
case KnownElements.TableRowGroup: t = typeof(System.Windows.Documents.
TableRowGroup
); break;