IconExtensionsIsCompressed Method
Determines whether the icon or its image at the specified index is compressed.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 7.1.0
public static bool IsCompressed(
this Icon icon,
int? index = null
)
<ExtensionAttribute>
Public Shared Function IsCompressed (
icon As Icon,
Optional index As Integer? = Nothing
) As Boolean
public:
[ExtensionAttribute]
static bool IsCompressed(
Icon^ icon,
Nullable<int> index = nullptr
)
[<ExtensionAttribute>]
static member IsCompressed :
icon : Icon *
?index : Nullable<int>
(* Defaults:
let _index = defaultArg index null
*)
-> bool
- 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: .
Boolean if the icon or its image at the specified index is compressed.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).