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!

TableRow Web Control

The TableRow control allows you to declare a table row and manipulate it programmatically.

ASP+ Syntax

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>

Properties

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.

Example

To be supplied.

See Also

Web Forms Controls by Function |