ControlSkinDelegate Delegate (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
ControlSkinDelegate Delegate

Represents the method that applies the correct control skin to the specified control.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Public Delegate Function ControlSkinDelegate ( _
	control As Control _
) As Control
C#
public delegate Control ControlSkinDelegate(
	Control control
)
Visual C++
public delegate Control^ ControlSkinDelegate(
	Control^ control
)
F#
type ControlSkinDelegate = 
    delegate of 
        control:Control -> Control

Parameters

control
Type: System.Web.UI.Control
The Control to which to apply the theme skin.

Return Value

Type: System.Web.UI.Control
The Control that was passed to the method, with a control skin applied.
Remarks

Page and control developers do not use the ControlSkinDelegate, ControlSkin, or PageTheme classes directly. These classes are used internally by the ASP.NET page framework to apply server- side properties and cascading style sheet definitions that are defined in ASP.NET themes and control skin files to specific types of controls.

The ControlSkinDelegate delegate is associated with the ApplySkin method of the ControlSkin class. The ControlSkin class represents an ASP.NET control skin, which is a component of an ASP.NET theme represented by a PageTheme object. For more information about ASP.NET themes, see ASP.NET Themes and Skins.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources