5 instantiations of TableRowGroup
PresentationFramework (5)
System\Windows\Documents\FixedElement.cs (1)
235root = new TableRowGroup();
System\Windows\Documents\TextRangeEditTables.cs (2)
662TableRowGroup rowGroup = new TableRowGroup(); 827TableRowGroup tableRowGroup = new TableRowGroup();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10895DefaultConstructor = delegate () { return new System.Windows.Documents.TableRowGroup(); },
System\Windows\Markup\KnownTypes.cs (1)
1579case KnownElements.TableRowGroup: o = new System.Windows.Documents.TableRowGroup(); break;
94 references to TableRowGroup
PresentationFramework (94)
MS\Internal\Documents\IIndexedChild.cs (1)
22/// Note that <see cref="TableRow"/> also implements IIndexedChild with parent <see cref="TableRowGroup"/>
MS\Internal\PtsHost\TableParaClient.cs (1)
1836TableRowGroup tableRowGroup = row.RowGroup;
MS\Internal\PtsHost\TableParagraph.cs (2)
263TableRowGroup rowGroup = Table.RowGroups[rowGroupIndex]; 310TableRowGroup currentRowGroup = currentRow.RowGroup;
System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
95foreach (TableRowGroup group in ((Table)Owner).RowGroups) 135foreach (TableRowGroup group in table.RowGroups)
System\Windows\Documents\FixedElement.cs (1)
399return typeof(TableRowGroup);
System\Windows\Documents\Table.cs (3)
60TableRowGroup rowGroup = value as TableRowGroup; 67throw (new ArgumentException(SR.Format(SR.UnexpectedParameterType, value.GetType(), typeof(TableRowGroup)), nameof(value)));
System\Windows\Documents\TableRow.cs (12)
22public class TableRow : TextElement, IAddChild, IIndexedChild<TableRowGroup>, IAcceptInsertion 87if (newParent != null && !(newParent is TableRowGroup)) 94((TableRowGroup)oldParent).Rows.InternalRemove(this); 101((TableRowGroup)newParent).Rows.InternalAdd(this); 128void IIndexedChild<TableRowGroup>.OnEnterParentTree() 136void IIndexedChild<TableRowGroup>.OnExitParentTree() 141void IIndexedChild<TableRowGroup>.OnAfterExitParentTree(TableRowGroup parent) 145int IIndexedChild<TableRowGroup>.Index 171internal void OnAfterExitParentTree(TableRowGroup rowGroup) 257internal TableRowGroup RowGroup 261return (Parent as TableRowGroup);
System\Windows\Documents\TableRowCollection.cs (3)
30internal TableRowCollection(TableRowGroup owner) 32_rowCollectionInternal = new TableTextElementCollectionInternal<TableRowGroup, TableRow>(owner); 555private TableTextElementCollectionInternal<TableRowGroup, TableRow> _rowCollectionInternal;
System\Windows\Documents\TableRowGroupCollection.cs (19)
20public sealed class TableRowGroupCollection : IList<TableRowGroup>, IList 32_rowGroupCollectionInternal = new TableTextElementCollectionInternal<Table, TableRowGroup>(owner); 81public void CopyTo(TableRowGroup[] array, int index) 97IEnumerator<TableRowGroup> IEnumerable<TableRowGroup>.GetEnumerator() 99return ((IEnumerable<TableRowGroup>)_rowGroupCollectionInternal).GetEnumerator(); 114public void Add(TableRowGroup item) 139public bool Contains(TableRowGroup item) 149public int IndexOf(TableRowGroup item) 178public void Insert(int index, TableRowGroup item) 198public bool Remove(TableRowGroup item) 434public TableRowGroup this[int index] 453internal void InternalAdd(TableRowGroup item) 461internal void InternalRemove(TableRowGroup item) 498private void PrivateConnectChild(int index, TableRowGroup item) 508private void PrivateDisconnectChild(TableRowGroup item) 514private bool BelongsToOwner(TableRowGroup item) 521private int FindInsertionIndex(TableRowGroup item) 554private TableTextElementCollectionInternal<Table, TableRowGroup> _rowGroupCollectionInternal;
System\windows\Documents\TextEditorTyping.cs (2)
1405TableRowGroup body = row.RowGroup; 1440TableRowGroup body = row.RowGroup;
System\Windows\Documents\TextRangeEditTables.cs (32)
188TableRowGroup anchorRowGroup; 189TableRowGroup movingRowGroup; 232TableRowGroup anchorRowGroup; 233TableRowGroup movingRowGroup; 289TableRowGroup anchorRowGroup; 290TableRowGroup movingRowGroup; 329TableRowGroup rowGroup = anchorCell.Row.RowGroup; 662TableRowGroup rowGroup = new TableRowGroup(); 827TableRowGroup tableRowGroup = new TableRowGroup(); 833if (parent is TableRowGroup) 953TableRowGroup startRowGroup; 954TableRowGroup endRowGroup; 1145TableRowGroup rowGroup = currentRow.RowGroup; 1367TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1437TableRowGroup startRowGroup; 1438TableRowGroup endRowGroup; 1488TableRowGroup rowGroup = table.RowGroups[iRowGroup]; 1831TableRowGroup startRowGroup; 1832TableRowGroup endRowGroup; 1882TableRowGroup startRowGroup; 1883TableRowGroup endRowGroup; 1903TableRowGroup rowGroup = startCell.Row.RowGroup; 2048out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2133out TableRowGroup anchorRowGroup, out TableRowGroup movingRowGroup, 2172out TableRowGroup rowGroup, 2201else if (element is TableRowGroup) 2203rowGroup = (TableRowGroup)element; 2341private static TextRange MergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2362private static bool CanMergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn) 2421private static TextRange DoMergeCellRange(TableRowGroup rowGroup, int topRow, int bottomRow, int leftColumn, int rightColumn)
System\Windows\Documents\TextRangeSerialization.cs (1)
1721typeof(TableRowGroup).IsAssignableFrom(commonAncestor.ParentType) ||
System\Windows\Documents\TextSchema.cs (7)
192else if (typeof(TableRowGroup).IsAssignableFrom(newType)) 194return typeof(TableRowGroup).IsAssignableFrom(siblingType); 434else if (typeof(TableRowGroup).IsAssignableFrom(type)) 436return typeof(TableRowGroup); 548else if (typeof(TableRowGroup).IsAssignableFrom(type)) 845return typeof(TableRowGroup).IsAssignableFrom(childType); 847else if (typeof(TableRowGroup).IsAssignableFrom(parentType))
System\windows\Documents\TextSelection.cs (1)
1012TableRowGroup rowGroup;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
723case 630: t = () => typeof(TableRowGroup); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
6282Type type = typeof(System.Windows.Documents.TableRowGroup); 6284this.GetXamlType(typeof(System.Windows.Documents.TableRowGroup)), // DeclaringType 6291GetDelegate = delegate (object target) { return ((System.Windows.Documents.TableRowGroup)target).Rows; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10892typeof(System.Windows.Documents.TableRowGroup),
System\Windows\Markup\KnownTypes.cs (2)
2525case KnownElements.TableRowGroup: return (o as System.Windows.Documents.TableRowGroup).Rows; 6177case KnownElements.TableRowGroup: t = typeof(System.Windows.Documents.TableRowGroup); break;