IconExtensionsExtractIcon(Icon, Size, Boolean) Method
Extracts the first icon of specified size from an
Icon instance.
Unless the
Icon constructors, this method works as expected.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 7.1.0
public static Icon? ExtractIcon(
this Icon icon,
Size size,
bool forceUncompressedResult
)
<ExtensionAttribute>
Public Shared Function ExtractIcon (
icon As Icon,
size As Size,
forceUncompressedResult As Boolean
) As Icon
public:
[ExtensionAttribute]
static Icon^ ExtractIcon(
Icon^ icon,
Size size,
bool forceUncompressedResult
)
[<ExtensionAttribute>]
static member ExtractIcon :
icon : Icon *
size : Size *
forceUncompressedResult : bool -> Icon
- icon Icon
- The icon that may contain multiple images.
- size Size
- The required icon size to retrieve.
- forceUncompressedResult Boolean
- to force returning an uncompressed icon;
to allow PNG compression, which is supported by Windows Vista and above.
IconAn
Icon instance, which contains only a single image,
or
if no icon found with the specified size.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).