Table.Caption Property

Definition

Gets or sets the text to render in an 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::String ^ Caption { System::String ^ get(); void set(System::String ^ value); };
public virtual string Caption { get; set; }
member this.Caption : string with get, set
Public Overridable Property Caption As String

Property Value

A string that represents the text to render in an HTML caption element in a Table control. The default value is an empty string ("").

Remarks

Use the Caption property to specify the text to render in an HTML caption element in a Table control. The text that you specify provides Assistive Technology devices with a description of the table that can be used to make the control more accessible.

Additional accessibility support for the Table control is provided by the CaptionAlign property. Use the CaptionAlign property to specify the alignment of the HTML caption element in a Table control.

The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and Globalization and Localization.

Applies to

See also