IconExtensionsExtractIcon Method (Icon, Int32) | KGy SOFT Drawing Libraries Help |
Extracts the icon of specified index from an Icon instance.
Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 4.6.1
Syntax
public static Icon ExtractIcon( this Icon icon, int index )
<ExtensionAttribute> Public Shared Function ExtractIcon ( icon As Icon, index As Integer ) As Icon
public: [ExtensionAttribute] static Icon^ ExtractIcon( Icon^ icon, int index )
[<ExtensionAttribute>] static member ExtractIcon : icon : Icon * index : int -> Icon
Parameters
- icon
- Type: System.DrawingIcon
The icon that may contain multiple images. - index
- Type: SystemInt32
The zero-based index of the icon image to retrieve.
Return Value
Type: IconAn Icon instance, which contains only a single image, or if the specified index was too large.
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