The TableRow control allows you to declare a table row and manipulate it programmatically.
Required properties are noted in boldface type.
<asp:TableRow id="eableRow1" runat="server" HorizontalAlign="Center|Justify|Left|NotSet|Right" VerticalAlign="Bottom|Middle|NotSet|Top" /> <asp:TableCell> Cell text </asp:TableCell> </asp:TableRow>
Property | Description |
---|---|
(Base control properties) | The properties defined in Base Web Control Properties. |
Cells | Collection of TableCellCollection objects representing individual cells within the row.
This property is only used when programming. At design time, you set this property by declaring <asp:TableCell> items. |
HorizontalAlign | The default horizontal alignment of the cells in the table row.
When programming, you set this property using the HorizontalAlign enumeration. |
VerticalAlign | The default vertical alignment of the cells in the table row.
When programming, you set this property using the HorizontalAlign enumeration. |
To be supplied.
See Also