ASP.NET Panel Direction 属性

最后更新于:2022-03-26 23:25:08

ASP.NET Panel Direction 属性


ASP.NET Panel Direction 属性 Panel 控件


定义和用法

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

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

语法

<asp:Panel Direction=”direction” runat=”server”>
Some Content
</asp:Panel>

 

属性 描述
direction 规定 panel 的内容显示方向。

可能的值:

  • NotSet – 默认。不设置内容方向
  • LeftToRight – 内容方向为从左到右
  • RightToLeft – 内容方向为从右到左


实例

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

<form runat=”server”>
<asp:Panel id=”pan1″ runat=”server” Direction=”RightToLeft”>
Hello!
</asp:Panel>
</form>

演示实例 »


ASP.NET Panel Direction 属性 Panel 控件