NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TableCell Web Control

The TableCell control allows you to declare a table cell and manipulate it programmatically.

ASP+ Syntax

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>

Properties

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.

Example

[To be supplied.]

See Also

Web Forms Controls by Function |