Get the embeded skin list.

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static List<string> GetSkins(
	this ISkinnableControl control
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function GetSkins ( 
	control As ISkinnableControl
) As List(Of String)
Visual C++
public:
[ExtensionAttribute]
static List<String^>^ GetSkins(
	ISkinnableControl^ control
)
F#
static member GetSkins : 
        control : ISkinnableControl -> List<string> 

Parameters

control
Type: ISkinnableControl
Telerik control where to look for the skin list

Return Value

Type: List<(Of <(<'String>)>)>
Skin list

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ISkinnableControl. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also