IconExtensionsIsCompressed Method

Determines whether the icon or its image at the specified index is compressed.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
C#
public static bool IsCompressed(
	this Icon icon,
	int? index = null
)

Parameters

icon  Icon
The icon.
index  NullableInt32  (Optional)
The index to check. If , then the result determines whether the icon has at least one compressed image. This parameter is optional.
Default value: .

Return Value

Boolean
if the icon or its image at the specified index is compressed.

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