KaxTimeViewCssClass Property |
Gets or sets the cascading style sheet (CSS) class rendered by the
KaxTimeView on the client.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public override string CssClass { get; set; }
Public Overrides Property CssClass As String
Get
Set
public:
virtual property String^ CssClass {
String^ get () override;
void set (String^ value) override;
}
abstract CssClass : string with get, set
override CssClass : string with 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