WebControl.CreateControlStyle Method

Definition

Creates the style object that is used internally by the WebControl class to implement all style related properties. This method is used primarily by control developers.

protected:
 virtual System::Web::UI::WebControls::Style ^ CreateControlStyle();
protected virtual System.Web.UI.WebControls.Style CreateControlStyle ();
abstract member CreateControlStyle : unit -> System.Web.UI.WebControls.Style
override this.CreateControlStyle : unit -> System.Web.UI.WebControls.Style
Protected Overridable Function CreateControlStyle () As Style

Returns

A Style that is used to implement all style-related properties of the control.

Remarks

The CreateControlStyle method is used to create the style object that is used internally to implement all style related properties. Derived classes can override this method to create a style that is appropriate to the class. This method is primarily used by control developers.

Note Control developers should return a Style that derives from the Style that the base control returns. It cannot be assumed that the ControlStyle is of a particular Style type since a derived control may return a different type.

Applies to

See also