Table.RowGroups Property
Gets a TableRowGroupCollection collection object that contains the row groups hosted by the table.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object> <TableRowGroupCollection .../> </object>
Property Value
Type: System.Windows.Documents.TableRowGroupCollectionA TableRowGroupCollection collection object that contains the row groups (represented by TableRowGroup objects) hosted by the table.
This property has no default value.
This example demonstrates some of the more common operations that can be performed on a table's row groups through the RowGroups property.
The following example creates a new table and then uses the Add method to add columns to the table's RowGroups collection.
The following example inserts a new TableRowGroup. The new column is inserted at index position 0, making it the new first row group in the table.
Note
|
|---|
|
The TableRowGroupCollection collection uses standard zero-based indexing. |
The following example adds several rows to a particular TableRowGroup (specified by index) in the table.
The following example accesses some arbitrary properties on rows in the first row group in the table.
The following example adds several cells to a particular TableRow (specified by index) in the table.
The following example access some arbitrary methods and properties on cells in the first row in the first row group.
The following example returns the number of TableRowGroup elements hosted by the table.
The following example removes a particular row group by reference.
The following example removes a particular row group by index.
The following example removes all row groups from the table's row groups collection.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note