次の方法で共有


PanelStyle.ScrollBars プロパティ

定義

パネル コントロールのスクロール バーの表示状態と位置を取得または設定します。

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

プロパティ値

ScrollBars

ScrollBars 値のいずれか 1 つ。 既定値は、None です。

例外

ScrollBars が、ScrollBars 値の 1 つではありません。

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

注釈

このプロパティは ScrollBars 、パネル コントロール内のスクロール バーの表示と位置を指定します。

プロパティは ScrollBars 、列挙値のいずれかを使用して設定されます ScrollBars 。 次の表に、使用可能な値を示します。

説明
None スクロール バーは表示されません。
Horizontal 水平スクロール バーのみが表示されます。
Vertical 垂直スクロール バーのみが表示されます。
Both 水平スクロール バーと垂直スクロール バーの両方が表示されます。
Auto 必要に応じて、水平、垂直、またはその両方のスクロール バーが表示されます。 それ以外の場合、スクロール バーは表示されません。

適用対象

こちらもご覧ください