5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
236root = new TableRowGroup();
System\Windows\Documents\TextRangeEditTables.cs (2)
663TableRowGroup rowGroup = new TableRowGroup(); 828TableRowGroup tableRowGroup = new TableRowGroup();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10896DefaultConstructor = delegate () { return new System.Windows.Documents.TableRowGroup(); },
System\Windows\Markup\KnownTypes.cs (1)
1580case 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)
1837TableRowGroup tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (2)
264TableRowGroup rowGroup = Table.RowGroups[rowGroupIndex]; 311TableRowGroup currentRowGroup = currentRow.RowGroup;
System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
96foreach (TableRowGroup group in ((Table)Owner).RowGroups) 136foreach (TableRowGroup group in table.RowGroups)
System\Windows\Documents\FixedElement.cs (1)
400return typeof(TableRowGroup);
System\Windows\Documents\Table.cs (3)
61TableRowGroup rowGroup = value as TableRowGroup; 68throw (new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(TableRowGroup)), "value"));
System\Windows\Documents\TableRow.cs (12)
23public class TableRow : TextElement, IAddChild, IIndexedChild<TableRowGroup>, IAcceptInsertion 88if (newParent != null && !(newParent is TableRowGroup)) 95((TableRowGroup)oldParent).Rows.InternalRemove(this); 102((TableRowGroup)newParent).Rows.InternalAdd(this); 129void IIndexedChild<TableRowGroup>.OnEnterParentTree() 137void IIndexedChild<TableRowGroup>.OnExitParentTree() 142void IIndexedChild<TableRowGroup>.OnAfterExitParentTree(TableRowGroup parent) 146int IIndexedChild<TableRowGroup>.Index 175internal void OnAfterExitParentTree(TableRowGroup rowGroup) 261internal TableRowGroup RowGroup 265return (Parent as TableRowGroup);
System\Windows\Documents\TableRowCollection.cs (3)
31internal TableRowCollection(TableRowGroup owner) 33_rowCollectionInternal = new TableTextElementCollectionInternal<TableRowGroup, TableRow>(owner); 556private TableTextElementCollectionInternal<TableRowGroup, TableRow> _rowCollectionInternal;
System\Windows\Documents\TableRowGroupCollection.cs (19)
21public sealed class TableRowGroupCollection : IList<TableRowGroup>, IList 33_rowGroupCollectionInternal = new TableTextElementCollectionInternal<Table, TableRowGroup>(owner); 82public void CopyTo(TableRowGroup[] array, int index) 98IEnumerator<TableRowGroup> IEnumerable<TableRowGroup>.GetEnumerator() 100return ((IEnumerable<TableRowGroup>)_rowGroupCollectionInternal).GetEnumerator(); 115public void Add(TableRowGroup item) 140public bool Contains(TableRowGroup item) 150public int IndexOf(TableRowGroup item) 179public void Insert(int index, TableRowGroup item) 199public bool Remove(TableRowGroup item) 435public TableRowGroup this[int index] 454internal void InternalAdd(TableRowGroup item) 462internal void InternalRemove(TableRowGroup item) 499private void PrivateConnectChild(int index, TableRowGroup item) 509private void PrivateDisconnectChild(TableRowGroup item) 515private bool BelongsToOwner(TableRowGroup item) 522private int FindInsertionIndex(TableRowGroup item) 555private TableTextElementCollectionInternal<Table, TableRowGroup> _rowGroupCollectionInternal;
System\windows\Documents\TextEditorTyping.cs (2)
1418TableRowGroup body = row.RowGroup; 1453TableRowGroup body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (32)
189TableRowGroup anchorRowGroup; 190TableRowGroup movingRowGroup; 233TableRowGroup anchorRowGroup; 234TableRowGroup movingRowGroup; 290TableRowGroup anchorRowGroup; 291TableRowGroup movingRowGroup; 330TableRowGroup rowGroup = anchorCell.Row.RowGroup; 663TableRowGroup rowGroup = new TableRowGroup(); 828TableRowGroup tableRowGroup = new TableRowGroup(); 834if (parent is TableRowGroup) 954TableRowGroup startRowGroup; 955TableRowGroup endRowGroup; 1146TableRowGroup rowGroup = currentRow.RowGroup; 1368TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1438TableRowGroup startRowGroup; 1439TableRowGroup endRowGroup; 1489TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1832TableRowGroup startRowGroup; 1833TableRowGroup endRowGroup; 1883TableRowGroup startRowGroup; 1884TableRowGroup endRowGroup; 1904TableRowGroup rowGroup = startCell.Row.RowGroup; 2049out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2134out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2173out TableRowGroup rowGroup, 2202else if (element is TableRowGroup) 2204rowGroup = (TableRowGroup)element; 2342private static TextRange MergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2363private static bool CanMergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2422private static TextRange DoMergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
System\Windows\Documents\TextRangeSerialization.cs (1)
1722typeof(TableRowGroup).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (7)
193else if (typeof(TableRowGroup).IsAssignableFrom(newType)) 195return typeof(TableRowGroup).IsAssignableFrom(siblingType); 435else if (typeof(TableRowGroup).IsAssignableFrom(type)) 437return typeof(TableRowGroup); 549else if (typeof(TableRowGroup).IsAssignableFrom(type)) 846return typeof(TableRowGroup).IsAssignableFrom(childType); 848else if (typeof(TableRowGroup).IsAssignableFrom(parentType))
System\windows\Documents\TextSelection.cs (1)
1028TableRowGroup rowGroup;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
724case 630: t = () => typeof(TableRowGroup); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
6283Type type = typeof(System.Windows.Documents.TableRowGroup); 6285this.GetXamlType(typeof(System.Windows.Documents.TableRowGroup)), // DeclaringType 6292GetDelegate = delegate (object target) { return ((System.Windows.Documents.TableRowGroup)target).Rows; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10893typeof(System.Windows.Documents.TableRowGroup),
System\Windows\Markup\KnownTypes.cs (2)
2526case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).Rows; 6178case KnownElements.TableRowGroup: t = typeof(System.Windows.Documents.TableRowGroup); break;