GridView::CaptionAlign Property
Gets or sets the horizontal or vertical position of the HTML caption element in a GridView control. This property is provided to make the control more accessible to users of assistive technology devices.
Assembly: System.Web (in System.Web.dll)
public: virtual property TableCaptionAlign CaptionAlign { TableCaptionAlign get (); void set (TableCaptionAlign value); }
<asp:GridView CaptionAlign="TableCaptionAlign" />
Property Value
Type: System.Web.UI.WebControls::TableCaptionAlignOne of the TableCaptionAlign values. The default is TableCaptionAlign.NotSet, which uses the browser's default setting.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The specified value is not one of the TableCaptionAlign enumeration values. |
Use the CaptionAlign property to specify the horizontal or vertical position of the HTML caption element in a 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 TableCaptionAlign enumeration values. The following table lists the possible values.
Value | Description |
|---|---|
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 Caption property.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note