다음을 통해 공유


PanelStyle.Wrap 속성

정의

패널 내에서 내용을 줄 바꿈할지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 virtual property bool Wrap { bool get(); void set(bool value); };
public virtual bool Wrap { get; set; }
member this.Wrap : bool with get, set
Public Overridable Property Wrap As Boolean

속성 값

Boolean

패널 내에서 내용을 줄 바꿈하면 true이고, 그렇지 않은 경우 false입니다. 기본값은 true입니다.

예제

다음 코드 예제에서는 합니다 Wrap 속성을 false 두 패널 컨트롤에 대 한 Panel1Panel2입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 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

설명

Wrap 속성 패널 내에서 내용을 줄 바꿈할지 여부를 나타냅니다. 경우는 Wrap 속성이로 설정 되어 falseScrollBars 속성이 Auto패널의 내용에에서 알맞은 패널, 패널의 콘텐츠가 가로 스크롤 막대를 사용 하 여 한 줄에 표시 하는 보다 긴 경우. 경우는 Wrap 속성이 falseScrollBars 속성이 None패널이 확장 되 고 필요한 경우 웹 페이지 가로 스크롤 막대를 갖습니다.

적용 대상