![]() |
|
IconExtensionsExtractIcons Method (Icon, Size) | KGy SOFT Drawing Libraries Help |
Extracts every icon of specified size from an Icon instance as separated instances.
Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 4.6.0
Syntax
public static Icon[] ExtractIcons( this Icon icon, Size size )
<ExtensionAttribute> Public Shared Function ExtractIcons ( icon As Icon, size As Size ) As Icon()
public: [ExtensionAttribute] static array<Icon^>^ ExtractIcons( Icon^ icon, Size size )
[<ExtensionAttribute>] static member ExtractIcons : icon : Icon * size : Size -> Icon[]
Parameters
- icon
- Type: System.DrawingIcon
The icon that may contain multiple images. - size
- Type: System.DrawingSize
The required icon size to retrieve.
Return Value
Type: IconAn array of Icon instances, which were extracted from the icon.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Icon. 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