TitleStyle.Wrap 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파트 컨트롤의 제목 표시줄 내용이 제목 표시줄에서 줄 바꿈되는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
virtual property bool Wrap { bool get(); void set(bool value); };
public override bool Wrap { get; set; }
member this.Wrap : bool with get, set
Public Overrides Property Wrap As Boolean
속성 값
제목 표시줄의 내용이 제목 표시줄에서 줄 바꿈되면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
예제
다음 코드 예제에서는 선언적 사용을 보여 줍니다는 Wrap 속성입니다. 다음 페이지의 <asp:calendar>
코드에서는 요소와 <asp:label>
요소가 영역 내에 나타나며, 해당 컨트롤은 런타임에 정품 웹 파트 기능을 제공합니다.
여러 스타일 특성이 <parttitlestyle>
포함된 요소는 영역에 포함된 두 웹 파트 컨트롤의 제목 표시줄에 적용됩니다. 요소에는 <parttitlestyle>
및 width
특성도 있습니다wrap
.
Wrap 속성 값이 로 true
설정되고 두 컨트롤의 제목 표시줄에 있는 텍스트가 특성에 할당된 값보다 넓기 width
때문에 페이지가 브라우저에 로드될 때 각 컨트롤의 제목 표시줄 텍스트가 줄 바꿈됩니다.
<%@ page Language="c#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" runat="server">
<asp:webpartmanager id="WebPartManager1" runat="server" />
<asp:webpartzone
id="WebPartZone1"
runat="server"
title="Zone 1">
<parttitlestyle
font-bold="true"
BorderWidth="2"
ForeColor="#3300cc"
wrap="true" Width="100"/>
<partstyle
borderwidth="1px"
borderstyle="Solid"
bordercolor="#81AAF2" />
<zonetemplate>
<asp:calendar
ID="cal1"
Runat="server"
Title="My Calendar" />
<asp:Label id="label1" runat="server"
Title="A WebPart Label">
The label control acts as a WebPart.
</asp:Label>
</zonetemplate>
</asp:webpartzone>
</form>
</body>
</html>
<%@ page Language="vb" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" runat="server">
<asp:webpartmanager id="WebPartManager1" runat="server" />
<asp:webpartzone
id="WebPartZone1"
runat="server"
title="Zone 1">
<parttitlestyle
font-bold="true"
BorderWidth="2"
ForeColor="#3300cc"
wrap="true" Width="100" />
<partstyle
borderwidth="1px"
borderstyle="Solid"
bordercolor="#81AAF2" />
<zonetemplate>
<asp:calendar
ID="cal1"
Runat="server"
Title="My Calendar" />
<asp:Label id="label1" runat="server"
Title="A WebPart Label">
The label control acts as a WebPart.
</asp:Label>
</zonetemplate>
</asp:webpartzone>
</form>
</body>
</html>
설명
클래스는 TitleStyle 값을 false
로 설정할 수 있도록 기본 Wrap 속성을 재정의합니다. 는 TitleStyle 기본적으로 파트 컨트롤의 Wrap 제목 표시줄에서 콘텐츠를 래핑할 수 없도록 속성을 false
로 설정합니다.
적용 대상
추가 정보
.NET