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