Control.ApplyStyleSheetSkin(Page) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Applies the style properties defined in the page style sheet to the control.
public:
virtual void ApplyStyleSheetSkin(System::Web::UI::Page ^ page);
public virtual void ApplyStyleSheetSkin (System.Web.UI.Page page);
abstract member ApplyStyleSheetSkin : System.Web.UI.Page -> unit
override this.ApplyStyleSheetSkin : System.Web.UI.Page -> unit
Public Overridable Sub ApplyStyleSheetSkin (page As Page)
Parameters
Exceptions
The style sheet is already applied.
Remarks
The ApplyStyleSheetSkin method sets style properties on the control based on skin properties defined in a theme directory. The skin applied is either the default skin for the control or the skin specified in the SkinID property. The ApplyStyleSheetSkin method is called by ASP.NET for declarative controls placed on a page. You must call the ApplyStyleSheetSkin method on any controls created programmatically at run time for style sheet skins to apply to the control. Theme skins are applied automatically. For more information on the difference between themes and cascading style sheets, see ASP.NET Themes and Skins.