GridView.Caption Property
.NET Framework 3.0
Gets or sets the text to render in an HTML caption element in a GridView control. This property is provided to make the control more accessible to users of assistive technology devices.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] public: virtual property String^ Caption { String^ get (); void set (String^ value); }
/** @property */ public String get_Caption () /** @property */ public void set_Caption (String value)
public function get Caption () : String public function set Caption (value : String)
Not applicable.
Property Value
A string that represents the text to render in an HTML caption element in a GridView control. The default value is an empty string ("").Use the Caption property to specify the text to render in an HTML caption element in a GridView 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. You can also specify the position at which to render the HTML caption element by using the CaptionAlign property.
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 ASP.NET Globalization and Localization.
Community Additions
ADD
Show: