ASP.NET TableRow HorizontalAlign 属性


TableRow 控件 TableRow 控件

定义和用法

HorizontalAlign 属性用于设置或返回 TableRow 控件中内容的水平对齐方式。

语法

<asp:TableRow HorizontalAlign=" align" runat="server">
Some Content
</asp:TableRow>
 
属性 描述
align 规定内容的水平对齐方式。

可能的值:

  • Center
  • Justify
  • Left
  • NotSet (Default)
  • Right


实例

下面的实例设置了 TableRow 控件的 HorizontalAlign 属性:

   <form runat="server">
   <asp:Table id="tab1" runat="server">
   <asp:TableRow HorizontalAlign="Right">
   <asp:TableCell>
   Hello!
   </asp:TableCell>
   <asp:TableCell>
   Hello!
   </asp:TableCell>
   </asp:TableRow>
   </asp:Table>
   </form> 
 

TableRow 控件 TableRow 控件