Style.RegisteredCssClass Property

Definition

Gets the cascading style sheet (CSS) class that is registered with the control.

public:
 property System::String ^ RegisteredCssClass { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string RegisteredCssClass { get; }
[<System.ComponentModel.Browsable(false)>]
member this.RegisteredCssClass : string
Public ReadOnly Property RegisteredCssClass As String

Property Value

The CSS class name with which the current instance was registered on the page.

Attributes

Remarks

Use the RegisteredCssClass property to retrieve the CSS class that is registered with the control.

A style is registered on the current page with a RegisterStyle method, which looks for a <head runat="server"``> element on the page where the properties in the current instance are placed in an embedded style sheet, represented by a <style> element, under a class name unique to the associated control.

Applies to