?
本文檔使用 php中文網(wǎng)手冊 發(fā)布
Direction 屬性用于設置或返回 Panel 的內(nèi)容顯示方向。
該屬性用于規(guī)定 Panel 中包含文本的控件的顯示方向。
<asp:Panel Direction="direction" runat="server">
Some Content
</asp:Panel>
?
屬性 | 描述 |
---|---|
direction | 規(guī)定 panel 的內(nèi)容顯示方向。 可能的值:
|
下面的實例更改了 Panel 控件的 Direction 屬性:
<form runat="server">
<asp:Panel id="pan1" runat="server" Direction="RightToLeft">
Hello!
</asp:Panel>
</form>