HtmlTable.Align Property
Gets or sets the alignment of the HtmlTable control in relation to other elements on the Web page.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.StringThe alignment of the HtmlTable control in relation to other elements on the Web page. The default value is String.Empty, which indicates that this property is not set.
Use the Align property to specify the alignment of the HtmlTable control in relation to other elements on the Web page.
Note |
|---|
This property does not control the alignment of the contents in the cells of the HtmlTable control. To control the alignment of contents of an individual cell, use the Align and VAlign properties of the HtmlTableCell class. You can also control the alignment of contents of the cells in an entire row by using the Align and VAlign properties of the HtmlTableRow class. |
The following table lists the values that can be used for this property.
Value | Description |
|---|---|
Left | Aligns the HtmlTable control on the left edge of the Web page. |
Center | Aligns the HtmlTable control in the middle of the Web page. |
Right | Aligns the HtmlTable control on the right edge of the Web page. |
Note |
|---|
If you specify Left or Right alignment, other elements on the Web page will wrap to the right or left of the HtmlTable control, respectively. If you specify Center alignment, no wrapping occurs and other elements appear below the control. |
The following code example demonstrates how to use the Align property to specify the alignment of the HtmlTable control in relation to other elements on the Web page.
<%@ Page Language="VB" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) ' Set the HtmlTable properties according to the ' user selections. Table1.CellSpacing = CInt(SpacingSelect.Value) Table1.CellPadding = CInt(PaddingSelect.Value) Table1.Align = AlignSelect.Value End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>HtmlTable Example</title> </head> <body> <form id="form1" runat="server"> <h3>HtmlTable Example</h3> <table id="Table1" style="border-width:1; border-color:Black" runat="server"> <tr> <th> Column 1 </th> <th> Column 2 </th> <th> Column 3 </th> </tr> <tr> <td> Cell 1 </td> <td> Cell 2 </td> <td> Cell 3 </td> </tr> <tr> <td> Cell 4 </td> <td> Cell 5 </td> <td> Cell 6 </td> </tr> </table> <br /><br /><br /><br /><br /><br /><br /><br /> <hr /> Select the display settings: <br /><br /> Align: <select id="AlignSelect" runat="server"> <option value="Left">Left</option> <option value="Center">Center</option> <option value="Right">Right</option> </select> CellPadding: <select id="PaddingSelect" runat="server"> <option value="0">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> CellSpacing: <select id="SpacingSelect" runat="server"> <option value="0">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> <br /><br /> <input type="button" value="Generate Table" onserverclick="Button_Click" runat="server"/> </form> </body> </html>
Available since 1.1
