| description | TableControl Element |
|---|---|
| ms.date | 08/25/2021 |
| title | TableControl Element |
Defines a table format for a view.
- ViewDefinitions Element
- View Element
- TableControl Element
<TableControl>
<AutoSize/>
<HideTableHeaders/>
<TableHeaders>...</TableHeaders>
<TableRowEntries>...</TableRowEntries>
</TableControl>
The following sections describe attributes, child elements, and parent element of the TableControl
element. You must specify the rows of the table. All other child elements are optional.
None.
| Element | Description |
|---|---|
| AutoSize Element for TableControl | Optional element. Specifies whether the column size and the number of columns are adjusted based on the size of the data. |
| HideTableHeaders Element for TableControl | Optional element. Indicates whether the header of the table is not displayed. |
| TableHeaders Element for TableControl | Required element. Defines the labels, the widths, and the alignment of the data for the columns of the table view. |
| TableRowEntries Element for TableControl | Optional element. Provides the definitions of the table view. |
| Element | Description |
|---|---|
| View Element | Defines a view that is used to display the members of one or more objects. |
For more information about the components of a table view, see Creating a Table View.
This example shows a TableControl element that is used to display the properties of the System.ServiceProcess.ServiceController
object.
<View>
<Name>service</Name>
<ViewSelectedBy>
<TypeName>System.ServiceProcess.ServiceController</TypeName>
</ViewSelectedBy>
<TableControl>
<TableHeaders>...</TableHeaders>
<TableRowEntries>...</TableRowEntries>
</TableControl>
</View>