IconExtensionsGetBitsPerPixel Method

Gets the bits per pixel (BPP) value of the icon.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.0.0-rc.1
C#
public static int GetBitsPerPixel(
	this Icon icon,
	int? index = null
)

Parameters

icon  Icon
The icon.
index  NullableInt32  (Optional)
The index to check. If , then the result determines the highest bpp value of the icon images. This parameter is optional.
Default value: .

Return Value

Int32
The bits per pixel (BPP) value of the icon.

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