IconExtensionsGetBitsPerPixel Method
Gets the bits per pixel (BPP) value of the icon.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.0.0-rc.1
public static int GetBitsPerPixel(
this Icon icon,
int? index = null
)
<ExtensionAttribute>
Public Shared Function GetBitsPerPixel (
icon As Icon,
Optional index As Integer? = Nothing
) As Integer
public:
[ExtensionAttribute]
static int GetBitsPerPixel(
Icon^ icon,
Nullable<int> index = nullptr
)
[<ExtensionAttribute>]
static member GetBitsPerPixel :
icon : Icon *
?index : Nullable<int>
(* Defaults:
let _index = defaultArg index null
*)
-> int
- 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: .
Int32The bits per pixel (BPP) value of the icon.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).