BaseDataList.CaptionAlign Property
Assembly: System.Web (in system.web.dll)
public: virtual property TableCaptionAlign CaptionAlign { TableCaptionAlign get (); void set (TableCaptionAlign value); }
/** @property */ public TableCaptionAlign get_CaptionAlign () /** @property */ public void set_CaptionAlign (TableCaptionAlign value)
public function get CaptionAlign () : TableCaptionAlign public function set CaptionAlign (value : TableCaptionAlign)
Not applicable.
Property Value
One of the TableCaptionAlign enumeration values. The default value is NotSet.Use the CaptionAlign property to specify the horizontal or vertical position of the HTML caption element in a 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 |
|---|---|
| NotSet | The caption element's alignment is not set. |
| Top | The caption element is aligned with the top of the table. |
| Bottom | The caption element is aligned with the bottom of the table. |
| Left | The caption element is aligned with the left edge of the table. |
| Right | The caption element is aligned with the right edge of the table. |
Use the Caption property to specify the text to render in an HTML caption element in a control.