TableControl Element (Format)
Defines a table format for a view.
<TableControl> <AutoSize/> <HideTableHeaders/> <TableHeaders>...</TableHeaders> <TableRowEntries>...</TableRowEntries> </TableControl>
Attributes and Elements
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.
Attributes
None.
Child Elements
Element | Description |
|---|---|
Optional element. Specifies whether the column size and the number of columns are adjusted based on the size of the data. | |
Optional element. Indicates whether the header of the table is not displayed. | |
Required element. Defines the labels, the widths, and the alignment of the data for the columns of the table view. | |
Optional element. Provides the definitions of the table view. |
Parent Elements
Element | Description |
|---|---|
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.
Example
This example shows a TableControl element that is used to display the properties of the ServiceController object.
<View>
<Name>service</Name>
<ViewSelectedBy>
<TypeName>System.ServiceProcess.ServiceController</TypeName>
</ViewSelectedBy>
<TableControl>
<TableHeaders>...</TableHeaders>
<TableRowEntries>...</TableRowEntries>
</TableControl>
</View>