DetailsView::CaptionAlign Property
Gets or sets the horizontal or vertical position of the HTML caption element in a DetailsView 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:DetailsView CaptionAlign="TableCaptionAlign" />
Property Value
Type: System.Web.UI.WebControls::TableCaptionAlignOne of the TableCaptionAlign values. The default is TableCaptionAlign.NotSet.
| 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 DetailsView 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. |
Additional accessibility support for the DetailsView control is provided by the Caption property. Use the Caption property to specify the text to render in an HTML caption element in a DetailsView control.
The value of CaptionAlign is stored in view state.
The following code example demonstrates how to use the CaptionAlign property to specify that the HTML caption element in a DetailsView control should be rendered on the left side of the control.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.