IconExtensionsExtractIcon(Icon, Int32) Method

Extracts the icon of specified index from an Icon instance.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 7.1.0
C#
public static Icon? ExtractIcon(
	this Icon icon,
	int index
)

Parameters

icon  Icon
The icon that may contain multiple images.
index  Int32
The zero-based index of the icon image to retrieve.

Return Value

Icon
An 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).

Remarks

The result Icon instances are compatible with Windows XP if the method is executed in a Windows XP environment.

See Also