The TableCell control allows you to declare a table cell and manipulate it programmatically.
Required properties are noted in boldface type.
<asp:TableCell id=" " runat="server" ColumnSpan="colcount" RowSpan="rowcount" HorizontalAlign="Center|Justify|Left|NotSet|Right" VerticalAlign="Bottom|Middle|NotSet|Top" Wrap="True|False" /> Cell text </asp:TableCell>
Property | Description |
---|---|
(Base control properties) | The properties defined in Base Web Control Properties. |
ColumnSpan | The number of columns that this is cell should occupy horizontally. |
HorizontalAlign | The horizontal alignment of the contents of the cell.
When programming, you set this property using the HorizontalAlign enumeration. |
RowSpan | The number of rows that this is cell should occupy vertically. |
VerticalAlign | The vertical alignment of the contents of the cell.
When programming, you set this property using the HorizontalAlign enumeration. |
Wrap | Indicates whether text should wrap within the cell. |
[To be supplied.]
See Also