次の方法で共有


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 値のいずれか 1 つ。 既定値は、NotSet です。

例外

方向が、ContentDirection 値の 1 つではありません。

次のコード例では、2 つのパネル コントロールのプロパティとPanel2Panel1列挙値をContentDirection.LeftToRight設定Directionします。 このコード例は、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 します。

適用対象

こちらもご覧ください