DetailsView.HorizontalAlign 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
페이지 내에 있는 DetailsView 컨트롤의 가로 맞춤을 가져오거나 설정합니다.
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 하는 DetailsView 방법을 보여 줍니다.
<%@ 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 runat="server">
<title>DetailsView HorizontalAlign Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView HorizontalAlign Example</h3>
<asp:detailsview id="CustomerDetailView"
datasourceid="DetailsViewSource"
autogeneraterows="true"
allowpaging="true"
horizontalalign="Center"
runat="server">
<fieldheaderstyle backcolor="Navy"
forecolor="White"/>
</asp:detailsview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the web.config file. -->
<asp:SqlDataSource ID="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From
[Customers]">
</asp:SqlDataSource>
</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 runat="server">
<title>DetailsView HorizontalAlign Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView HorizontalAlign Example</h3>
<asp:detailsview id="CustomerDetailView"
datasourceid="DetailsViewSource"
autogeneraterows="true"
allowpaging="true"
horizontalalign="Center"
runat="server">
<fieldheaderstyle backcolor="Navy"
forecolor="White"/>
</asp:detailsview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the web.config file. -->
<asp:SqlDataSource ID="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From
[Customers]">
</asp:SqlDataSource>
</form>
</body>
</html>
설명
이 HorizontalAlign 속성을 사용하여 페이지 내에서 컨트롤의 가로 맞춤을 DetailsView 지정합니다. 다음 표에는 다양한 가로 맞춤 스타일이 나와 있습니다.
HorizontalAlign 값 | Description |
---|---|
HorizontalAlign.NotSet |
컨트롤의 가로 맞춤이 DetailsView 설정되지 않았습니다. |
HorizontalAlign.Left |
DetailsView 컨트롤은 페이지에서 왼쪽 맞춤입니다. |
HorizontalAlign.Center |
DetailsView 컨트롤은 페이지의 가운데에 있습니다. |
HorizontalAlign.Right |
DetailsView 컨트롤이 페이지에 오른쪽 맞춤되어 있습니다. |
HorizontalAlign.Justify |
DetailsView 컨트롤은 페이지의 왼쪽 여백과 오른쪽 여백 모두에 맞춰집니다. |