Calendar.UseAccessibleHeader Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether to render the table header <th>
HTML element for the day headers instead of the table data <td>
HTML element.
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 <th>
element is used for day header cells; false
if the <td>
element is used for day headers.
Remarks
The table header <th>
HTML element is used for day header cells by default. You can revert to the .NET Framework version 1.0 behavior of using <td>
elements for day header cells by setting this property to false
.
Note that changing this value can affect scripts that rely on the rendering behavior of the version 1.0 edition of this control. The use of the <th>
element might also alter the visible rendering of the Calendar control in browsers by making the day header cells center-aligned and bold.