다음을 통해 공유


PanelStyle.HorizontalAlign 속성

정의

panel 컨트롤 내에 있는 내용의 가로 맞춤을 가져오거나 설정합니다.

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

속성 값

HorizontalAlign

HorizontalAlign 값 중 하나입니다. 기본값은 NotSet입니다.

예외

가로 맞춤이 HorizontalAlign 값이 아닌 경우

예제

다음 코드 예제에서는 합니다 HorizontalAlign 두 패널 컨트롤의 속성 Panel1Panel2HorizontalAlign.Center 열거형 값입니다. 예제를 실행 하는.aspx 파일에 대 한 참조를 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

설명

HorizontalAlign 속성 패널 컨트롤 내에 있는 내용의 가로 맞춤을 지정 합니다.

합니다 HorizontalAlign 중 하나를 사용 하 여 속성을 설정 합니다 HorizontalAlign 열거형 값입니다. 다음 표에서 가능한 값을 나열합니다.

설명
NotSet 가로 맞춤이 설정되어 있지 않습니다.
Left 패널의 내용이 왼쪽에 맞춰집니다.
Center 패널의 내용은 가운데 맞춥니다.
Right 패널의 내용이 오른쪽 맞춤 합니다.

참고

. 경우는 HorizontalAlign 속성이 NotSet 패널 컨트롤을 포함 하는 컨트롤의 속성은 설정 하지만 설정을 포함 하는 컨트롤에서 상속 됩니다.

적용 대상

추가 정보