欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET Direction 屬性

定義和用法

Direction 屬性用于設(shè)置或返回 Panel 的內(nèi)容顯示方向。

該屬性用于規(guī)定 Panel 中包含文本的控件的顯示方向。

語法

<asp:Panel Direction="direction" runat="server">
Some Content
</asp:Panel>
屬性 描述
direction

規(guī)定 panel 的內(nèi)容顯示方向。

可能的值:

  • NotSet - 默認。不設(shè)置內(nèi)容方向
  • LeftToRight - 內(nèi)容方向為從左到右
  • RightToLeft - 內(nèi)容方向為從右到左

實例

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

<form runat="server">
<asp:Panel id="pan1" runat="server" Direction="RightToLeft">

Hello!
</asp:Panel>
</form>

實例

為 Panel 控件設(shè)置 Direction 屬性