System.Web.UI.WebControls.GridView.CaptionAlign Property

Gets or sets the horizontal or vertical position of the HTML caption element in a System.Web.UI.WebControls.GridView control. This property is provided to make the control more accessible to users of assistive technology devices.

Syntax

[System.ComponentModel.DefaultValue(System.Web.UI.WebControls.TableCaptionAlign.NotSet)]
public virtual TableCaptionAlign CaptionAlign { set; get; }

Value

Documentation for this section has not yet been entered.

Remarks

Use the GridView.CaptionAlign property to specify the horizontal or vertical position of the HTML caption element in a System.Web.UI.WebControls.GridView control. This property is provided to make the control more accessible to users of assistive technology devices.

This property is set using one of the System.Web.UI.WebControls.TableCaptionAlign enumeration values. The following table lists the possible values.

TableCaptionAlign.Bottom

The caption element is aligned with the bottom of the table.

TableCaptionAlign.Left

The caption element is aligned with the left side of the table.

TableCaptionAlign.NotSet

The caption element's alignment is not set.

TableCaptionAlign.Right

The caption element is aligned with the right side of the table.

TableCaptionAlign.Top

The caption element is aligned with the top of the table.

Note:

When this property is set to TableCaptionAlign.NotSet, the default value of the browser is used.

To specify the text for the HTML caption element, use the GridView.Caption property.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0