SkinBuilder.ApplyTheme Method

Definition

Applies a theme and a control skin to the current control at design time, if a SkinBuilder object is associated with the control.

public:
 System::Web::UI::Control ^ ApplyTheme();
public System.Web.UI.Control ApplyTheme ();
member this.ApplyTheme : unit -> System.Web.UI.Control
Public Function ApplyTheme () As Control

Returns

The control instance to which the theme or style sheet theme and any control skin was applied. This is the same instance passed to the builder's SkinBuilder(ThemeProvider, Control, ControlBuilder, String) constructor. This method will return null if no control was passed to the constructor.

Remarks

SkinBuilder objects are associated with controls at design time by specifying an IThemeResolutionService instance for the ControlBuilder object of a control that supplies a ThemeProvider object. The ThemeProvider object can return a SkinBuilder object for a given control.

Applies to