ASP.NET Direction 属性
定义和用法
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>
实例
- 为 Panel 控件设置 Direction 属性