PanelStyle.ScrollBars 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
panel 컨트롤에서 스크롤 막대의 표시 여부와 위치를 가져오거나 설정합니다.
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 값 중 하나입니다. 기본값은 None입니다.
예외
ScrollBars속성이 ScrollBars 값 중 하나가 아닌 경우
예제
다음 코드 예제에서는 합니다 ScrollBars 두 패널 컨트롤의 속성 Panel1
및 Panel2
를 ScrollBars.Both
열거형 값입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 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 |
필요한 경우 가로, 세로 또는 두 스크롤 막대가 표시 됩니다. 필요하지 않으면 스크롤 막대가 표시되지 않습니다. |