Direction 属性用于设置或返回 Panel 的内容显示方向。
该属性用于规定 Panel 中包含文本的控件的显示方向。
<asp:Panel Direction="direction" runat="server"> Some Content </asp:Panel>
属性 | 描述 |
---|---|
direction |
规定 panel 的内容显示方向。 可能的值:
|
下面的例子更改了 Panel 控件的 Direction 属性:
<form runat="server">
<asp:Panel id="pan1" runat="server" Direction="RightToLeft"
>
Hello!
</asp:Panel>
</form>