5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
242
root = new
TableRowGroup
();
System\Windows\Documents\TextRangeEditTables.cs (2)
663
TableRowGroup rowGroup = new
TableRowGroup
();
826
TableRowGroup tableRowGroup = new
TableRowGroup
();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9825
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)
1843
TableRowGroup
tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (2)
277
TableRowGroup
rowGroup = Table.RowGroups[rowGroupIndex];
324
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)
402
return typeof(
TableRowGroup
);
System\Windows\Documents\Table.cs (3)
78
TableRowGroup
rowGroup = value as
TableRowGroup
;
85
throw (new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(
TableRowGroup
)), "value"));
System\Windows\Documents\TableRow.cs (12)
38
public class TableRow : TextElement, IAddChild, IIndexedChild<
TableRowGroup
>, IAcceptInsertion
103
if (newParent != null && !(newParent is
TableRowGroup
))
110
((
TableRowGroup
)oldParent).Rows.InternalRemove(this);
117
((
TableRowGroup
)newParent).Rows.InternalAdd(this);
144
void IIndexedChild<
TableRowGroup
>.OnEnterParentTree()
152
void IIndexedChild<
TableRowGroup
>.OnExitParentTree()
157
void IIndexedChild<
TableRowGroup
>.OnAfterExitParentTree(
TableRowGroup
parent)
161
int IIndexedChild<
TableRowGroup
>.Index
190
internal void OnAfterExitParentTree(
TableRowGroup
rowGroup)
276
internal
TableRowGroup
RowGroup
280
return (Parent as
TableRowGroup
);
System\Windows\Documents\TableRowCollection.cs (3)
33
internal TableRowCollection(
TableRowGroup
owner)
35
_rowCollectionInternal = new TableTextElementCollectionInternal<
TableRowGroup
, TableRow>(owner);
558
private TableTextElementCollectionInternal<
TableRowGroup
, TableRow> _rowCollectionInternal;
System\Windows\Documents\TableRowGroupCollection.cs (19)
23
public sealed class TableRowGroupCollection : IList<
TableRowGroup
>, IList
35
_rowGroupCollectionInternal = new TableTextElementCollectionInternal<Table,
TableRowGroup
>(owner);
84
public void CopyTo(
TableRowGroup
[] array, int index)
100
IEnumerator<
TableRowGroup
> IEnumerable<
TableRowGroup
>.GetEnumerator()
102
return ((IEnumerable<
TableRowGroup
>)_rowGroupCollectionInternal).GetEnumerator();
117
public void Add(
TableRowGroup
item)
142
public bool Contains(
TableRowGroup
item)
152
public int IndexOf(
TableRowGroup
item)
181
public void Insert(int index,
TableRowGroup
item)
201
public bool Remove(
TableRowGroup
item)
437
public
TableRowGroup
this[int index]
456
internal void InternalAdd(
TableRowGroup
item)
464
internal void InternalRemove(
TableRowGroup
item)
501
private void PrivateConnectChild(int index,
TableRowGroup
item)
511
private void PrivateDisconnectChild(
TableRowGroup
item)
517
private bool BelongsToOwner(
TableRowGroup
item)
524
private int FindInsertionIndex(
TableRowGroup
item)
557
private TableTextElementCollectionInternal<Table,
TableRowGroup
> _rowGroupCollectionInternal;
System\windows\Documents\TextEditorTyping.cs (2)
1427
TableRowGroup
body = row.RowGroup;
1462
TableRowGroup
body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (32)
191
TableRowGroup
anchorRowGroup;
192
TableRowGroup
movingRowGroup;
235
TableRowGroup
anchorRowGroup;
236
TableRowGroup
movingRowGroup;
292
TableRowGroup
anchorRowGroup;
293
TableRowGroup
movingRowGroup;
332
TableRowGroup
rowGroup = anchorCell.Row.RowGroup;
663
TableRowGroup
rowGroup = new TableRowGroup();
826
TableRowGroup
tableRowGroup = new TableRowGroup();
832
if (parent is
TableRowGroup
)
952
TableRowGroup
startRowGroup;
953
TableRowGroup
endRowGroup;
1144
TableRowGroup
rowGroup = currentRow.RowGroup;
1366
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1436
TableRowGroup
startRowGroup;
1437
TableRowGroup
endRowGroup;
1487
TableRowGroup
rowGroup = table.RowGroups[iRowGroup];
1830
TableRowGroup
startRowGroup;
1831
TableRowGroup
endRowGroup;
1881
TableRowGroup
startRowGroup;
1882
TableRowGroup
endRowGroup;
1902
TableRowGroup
rowGroup = startCell.Row.RowGroup;
2047
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2132
out
TableRowGroup
anchorRowGroup, out
TableRowGroup
movingRowGroup,
2171
out
TableRowGroup
rowGroup,
2200
else if (element is
TableRowGroup
)
2202
rowGroup = (
TableRowGroup
)element;
2340
private static TextRange MergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2361
private static bool CanMergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
2420
private static TextRange DoMergeCellRange(
TableRowGroup
rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
System\Windows\Documents\TextRangeSerialization.cs (1)
1728
typeof(
TableRowGroup
).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (7)
194
else if (typeof(
TableRowGroup
).IsAssignableFrom(newType))
196
return typeof(
TableRowGroup
).IsAssignableFrom(siblingType);
436
else if (typeof(
TableRowGroup
).IsAssignableFrom(type))
438
return typeof(
TableRowGroup
);
550
else if (typeof(
TableRowGroup
).IsAssignableFrom(type))
852
return typeof(
TableRowGroup
).IsAssignableFrom(childType);
854
else if (typeof(
TableRowGroup
).IsAssignableFrom(parentType))
System\windows\Documents\TextSelection.cs (1)
1031
TableRowGroup
rowGroup;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
726
case 630: t = () => typeof(
TableRowGroup
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5875
Type type = typeof(System.Windows.Documents.
TableRowGroup
);
5877
this.GetXamlType(typeof(System.Windows.Documents.
TableRowGroup
)), // DeclaringType
5883
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.
TableRowGroup
)target).Rows; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9823
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;