TableHeaderCell.CategoryText Property
.NET Framework 3.0
Gets or sets the axis attribute of the HTML th element for the TableHeaderCell control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[TypeConverterAttribute(typeof(StringArrayConverter))] public: virtual property array<String^>^ CategoryText { array<String^>^ get (); void set (array<String^>^ value); }
/** @property */ public String[] get_CategoryText () /** @property */ public void set_CategoryText (String[] value)
public function get CategoryText () : String[] public function set CategoryText (value : String[])
Not applicable.
Property Value
An array of string values representing the TableHeaderCell categories.The categories can be any string values that are pertinent to the table. The CategoryText property is rendered as the axis attribute of the HTML th element, which is used to group table cells into conceptual categories. The categories are rendered in HTML as a comma-delimited list.
The value of this property is stored in view state.
Community Additions
ADD
Show: