5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
234root = new TableRowGroup();
System\Windows\Documents\TextRangeEditTables.cs (2)
661TableRowGroup rowGroup = new TableRowGroup(); 824TableRowGroup tableRowGroup = new TableRowGroup();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9823bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.TableRowGroup(); };
System\Windows\Markup\KnownTypes.cs (1)
1586case 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)
269TableRowGroup rowGroup = Table.RowGroups[rowGroupIndex]; 316TableRowGroup 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)
394return typeof(TableRowGroup);
System\Windows\Documents\Table.cs (3)
69TableRowGroup rowGroup = value as TableRowGroup; 76throw (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; 661TableRowGroup rowGroup = new TableRowGroup(); 824TableRowGroup tableRowGroup = new TableRowGroup(); 830if (parent is TableRowGroup) 950TableRowGroup startRowGroup; 951TableRowGroup endRowGroup; 1142TableRowGroup rowGroup = currentRow.RowGroup; 1364TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1434TableRowGroup startRowGroup; 1435TableRowGroup endRowGroup; 1485TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1828TableRowGroup startRowGroup; 1829TableRowGroup endRowGroup; 1879TableRowGroup startRowGroup; 1880TableRowGroup endRowGroup; 1900TableRowGroup rowGroup = startCell.Row.RowGroup; 2045out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2130out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2169out TableRowGroup rowGroup, 2198else if (element is TableRowGroup) 2200rowGroup = (TableRowGroup)element; 2338private static TextRange MergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2359private static bool CanMergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2418private 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)) 851return typeof(TableRowGroup).IsAssignableFrom(childType); 853else 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)
5873Type type = typeof(System.Windows.Documents.TableRowGroup); 5875this.GetXamlType(typeof(System.Windows.Documents.TableRowGroup)), // DeclaringType 5881bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.TableRowGroup)target).Rows; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9821typeof(System.Windows.Documents.TableRowGroup),
System\Windows\Markup\KnownTypes.cs (2)
2532case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).Rows; 6184case KnownElements.TableRowGroup: t = typeof(System.Windows.Documents.TableRowGroup); break;