Click or drag to resize
KaxTimeViewCssClass Property
Gets or sets the cascading style sheet (CSS) class rendered by the KaxTimeView on the client.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public override string CssClass { get; set; }

Property Value

Type: String
The CSS class rendered by the KaxTimeView control on the client. The default is String.Empty.
Remarks

Use the CssClass property to specify the CSS class to render on the client for the KaxTimeView control. This property will render on browsers for all controls. It will always be rendered as the class attribute, regardless of the browser.

For example, suppose you have the following KaxTimeVeiw control declaration:

<asp:TextBox id="TextBox1" ForeColor="Red" CssClass="class1" />

The following HTML is rendered on the client for the previous KaxTimeView control declaration:

See Also