PanelStyle.Direction 属性

定义

获取或设置在面板控件中显示包含文本的控件的方向。

public:
 virtual property System::Web::UI::WebControls::ContentDirection Direction { System::Web::UI::WebControls::ContentDirection get(); void set(System::Web::UI::WebControls::ContentDirection value); };
public virtual System.Web.UI.WebControls.ContentDirection Direction { get; set; }
member this.Direction : System.Web.UI.WebControls.ContentDirection with get, set
Public Overridable Property Direction As ContentDirection

属性值

ContentDirection

ContentDirection 值之一。 默认值为 NotSet

例外

该方向不是 ContentDirection 值之一。

示例

下面的代码示例将 Direction 两个面板控件 Panel1 Panel2的属性设置为 ContentDirection.LeftToRight 枚举值。 此代码示例是为类提供的大型示例的 PanelStyle 一部分。

public partial class PanelStylecs_aspx : Page
{
    void Page_Load(object sender, EventArgs e)
    {
        StateBag panelState = new StateBag();
        PanelStyle myPanelStyle = new PanelStyle(panelState);
        
        // Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center;
        myPanelStyle.ScrollBars = ScrollBars.Both;
        myPanelStyle.Wrap = false;
        myPanelStyle.Direction = ContentDirection.LeftToRight;
        myPanelStyle.BackImageUrl = @"~\images\picture.jpg";

        // Use the ApplyStyle method of the Panel control to apply
        // the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle);
        Panel2.ApplyStyle(myPanelStyle); 
    }
}
Partial Class PanelStylevb_aspx
    Inherits Page

    Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

        Dim panelState As StateBag = New StateBag()
        Dim myPanelStyle As PanelStyle = New PanelStyle(panelState)

        ' Set the properties of the PanelStyle class.
        myPanelStyle.HorizontalAlign = HorizontalAlign.Center
        myPanelStyle.ScrollBars = ScrollBars.Both
        myPanelStyle.Wrap = False
        myPanelStyle.Direction = ContentDirection.LeftToRight
        myPanelStyle.BackImageUrl = "~\images\picture.jpg"

        ' Use the ApplyStyle method of the Panel control to apply
        ' the settings from the myPanelStyle object.
        Panel1.ApplyStyle(myPanelStyle)
        Panel2.ApplyStyle(myPanelStyle)
        
    End Sub

End Class

注解

Direction 属性指定要在面板控件中包含文本的控件的方向。

Direction 属性使用其中一个 ContentDirection 值进行设置。 下表列出了可能的值。

说明
NotSet 未设置内容方向。
LeftToRight 包含文本的子控件从左到右显示。
RightToLeft 包含文本的子控件从右到左显示。

如果指定 LeftToRight,则包含从左到右的文本显示的子控件。 如果指定 RightToLeft,则包含从右到左显示文本的子控件。 用于 RightToLeft 显示从右到左写入的语言的文本,例如阿拉伯语或希伯来语。

适用于

另请参阅