PanelStyle.Wrap 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
패널 내에서 내용을 줄 바꿈할지 여부를 나타내는 값을 가져오거나 설정합니다.
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
속성 값
패널 내에서 내용을 줄 바꿈하면 true
이고, 그렇지 않은 경우 false
입니다. 기본값은 true
입니다.
예제
다음 코드 예제에서는 합니다 Wrap 속성을 false
두 패널 컨트롤에 대 한 Panel1
고 Panel2
입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 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 속성이로 설정 되어 false
및 ScrollBars 속성이 Auto패널의 내용에에서 알맞은 패널, 패널의 콘텐츠가 가로 스크롤 막대를 사용 하 여 한 줄에 표시 하는 보다 긴 경우. 경우는 Wrap 속성이 false
및 ScrollBars 속성이 None패널이 확장 되 고 필요한 경우 웹 페이지 가로 스크롤 막대를 갖습니다.