GridView.UseAccessibleHeader 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
GridView 컨트롤이 머리글을 액세스할 수 있는 형식으로 렌더링하는지 여부를 나타내는 값을 가져오거나 설정합니다. 이 속성을 사용하면 보조 기술 디바이스 사용자가 컨트롤에 더 쉽게 액세스할 수 있습니다.
public:
virtual property bool UseAccessibleHeader { bool get(); void set(bool value); };
public virtual bool UseAccessibleHeader { get; set; }
member this.UseAccessibleHeader : bool with get, set
Public Overridable Property UseAccessibleHeader As Boolean
속성 값
GridView 컨트롤이 머리글을 액세스할 수 있는 형식으로 렌더링하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
예제
다음 예제에서는 액세스 가능한 헤더를 UseAccessibleHeader 사용 하지 않도록 설정 하는 속성을 사용 하는 방법을 보여 줍니다.
<%@ 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 UseAccessibleHeader Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView UseAccessibleHeader Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSource"
autogeneratecolumns="true"
emptydatatext="No data available."
allowpaging="true"
useaccessibleheader="false"
runat="server">
<headerstyle backcolor="LightSteelBlue"
font-names="Verdana"
font-italic="true"
font-size="12"
forecolor="Blue"/>
</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="CustomersSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server"/>
</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 UseAccessibleHeader Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView UseAccessibleHeader Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSource"
autogeneratecolumns="true"
emptydatatext="No data available."
allowpaging="true"
useaccessibleheader="false"
runat="server">
<headerstyle backcolor="LightSteelBlue"
font-names="Verdana"
font-italic="true"
font-size="12"
forecolor="Blue"/>
</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="CustomersSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server"/>
</form>
</body>
</html>
설명
컨트롤이 UseAccessibleHeader 해당 머리글 행을 GridView 접근성 있는 형식으로 렌더링할지 여부를 지정하려면 이 속성을 사용합니다. 이 속성을 사용하면 보조 기술 디바이스 사용자가 컨트롤에 더 쉽게 액세스할 수 있습니다. 기본적으로이 속성의 값은 true
컨트롤에 대 한 머리글 테이블 머리글 셀 태그를 사용 하 여 <th>
렌더링 됩니다. 또한 scope="col"
표 머리글에 특성이 추가되어 열의 모든 셀에 헤더가 적용되도록 지정합니다. 요소의 <th>
기본 렌더링은 유지되며 텍스트를 가로로 굵게 렌더링하고 가운데에 맞춥게 렌더링합니다. 개발자는 계단식 스타일시트를 사용하여 요소의 스타일을 재정의 <th>
할 수 있습니다.
이 속성의 값이 false
있으면 컨트롤에 대 한 헤더 테이블 셀 태그를 사용 하 여 <td>
렌더링 됩니다.