ASP.NET Direction 属性

定义和用法

Direction 属性用于设置或返回 Panel 的内容显示方向。

该属性用于规定 Panel 中包含文本的控件的显示方向。

语法

  1. <asp:Panel Direction="direction" runat="server">
  2. Some Content
  3. </asp:Panel>
属性 描述
direction 规定 panel 的内容显示方向。 可能的值: - NotSet - 默认。不设置内容方向 - LeftToRight - 内容方向为从左到右 - RightToLeft - 内容方向为从右到左

实例

下面的例子更改了 Panel 控件的 Direction 属性:

  1. <form runat="server">
  2. <asp:Panel id="pan1" runat="server" Direction="RightToLeft">
  3.  
  4. Hello!
  5. </asp:Panel>
  6. </form>

实例

  • 为 Panel 控件设置 Direction 属性