GridView.HorizontalAlign 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
페이지 내에 있는 GridView 컨트롤의 가로 맞춤을 가져오거나 설정합니다.
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 GridView 정렬 하는 속성을 사용 하는 방법을 보여 줍니다.
<%@ 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>GridView HorizontalAlign Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView HorizontalAlign Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSqlDataSource"
autogeneratecolumns="true"
horizontalalign="Right"
runat="server">
</asp:gridview>
<!-- 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="CustomersSqlDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server">
</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>GridView HorizontalAlign Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView HorizontalAlign Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSqlDataSource"
autogeneratecolumns="true"
horizontalalign="Right"
runat="server">
</asp:gridview>
<!-- 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="CustomersSqlDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
설명
이 HorizontalAlign 속성을 사용하여 페이지 내에서 컨트롤의 가로 맞춤을 GridView 지정합니다. 다음 표에는 다양한 가로 맞춤 스타일이 나와 있습니다.
맞춤 값 | Description |
---|---|
HorizontalAlign.NotSet |
컨트롤의 가로 맞춤이 GridView 설정되지 않았습니다. |
HorizontalAlign.Left |
GridView 컨트롤은 페이지에서 왼쪽 맞춤입니다. |
HorizontalAlign.Center |
GridView 컨트롤은 페이지의 가운데에 있습니다. |
HorizontalAlign.Right |
GridView 컨트롤이 페이지에 오른쪽 맞춤되어 있습니다. |
HorizontalAlign.Justify |
GridView 컨트롤은 페이지의 왼쪽 여백과 오른쪽 여백 모두에 맞춰집니다. |