BaseDataList.UseAccessibleHeader Property

Definition

Gets or sets a value indicating whether the data listing control renders its header in an accessible format. This property is provided to make the control more accessible to users of assistive technology devices.

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

Property Value

true if the control renders its header in an accessible format; otherwise, false. The default is false.

Remarks

Use the UseAccessibleHeader property to specify whether the data listing control renders its header in an accessible format. This property is provided to make the control more accessible to users of assistive technology devices. By default, the value of this property is false and the header for the control is rendered between cell tags <td> and </td>. If the value of this property is true, the header for the control is rendered between table header cell tags <th> and </th>. In addition, a scope="col" attribute is added to the table header to specify that the header applies to all the cells in the column. The default rendering of the <th> element is preserved, rendering text as bold and centered horizontally. Developers can override the behavior of the <th> element using a cascading style sheet (CSS). However, requiring the use of style sheets is discouraged when creating accessible Web pages.

For data listing controls, such as the DataList control and the DataGrid control, that inherit from the BaseDataList class, you can set the UseAccessibleHeader property declaratively or programmatically. If you set the UseAccessibleHeader property programmatically, set it before binding data with the DataBind method.

Applies to

See also