Table.CaptionAlign 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 the horizontal or vertical position of the HTML caption element in a Table control. This property is provided to make the control more accessible to users of Assistive Technology devices.
public:
virtual property System::Web::UI::WebControls::TableCaptionAlign CaptionAlign { System::Web::UI::WebControls::TableCaptionAlign get(); void set(System::Web::UI::WebControls::TableCaptionAlign value); };
public virtual System.Web.UI.WebControls.TableCaptionAlign CaptionAlign { get; set; }
member this.CaptionAlign : System.Web.UI.WebControls.TableCaptionAlign with get, set
Public Overridable Property CaptionAlign As TableCaptionAlign
Property Value
One of the TableCaptionAlign enumeration values. The default value is NotSet
.
Exceptions
The specified type is not one of the TableCaptionAlign enumeration values.
Remarks
Use the CaptionAlign property to specify the horizontal or vertical position of the HTML caption element in a Table 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 of the table. |
Right |
The caption element is aligned with the right of the table. |
Additional accessibility support for the Table control is provided by the Caption property. Use the Caption property to specify the text to render in an HTML caption element in a Table control.