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 (Declaration)
Public Delegate Function ControlSkinDelegate ( _
	control As Control _
) As Control
Visual Basic (Usage)
Dim instance As New ControlSkinDelegate(AddressOf HandlerMethod)
C#
public delegate Control ControlSkinDelegate(
	Control control
)
Visual C++
public delegate Control^ ControlSkinDelegate(
	Control^ control
)
JScript
JScript does not support delegates.

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 Overview.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources