Function Reference


_ColorGetBlue

Returns the blue component of a given color

#include <Color.au3>
_ColorGetBlue ( $iColor )

Parameters

$iColor The RGB color to work with (0x00RRGGBB).

Return Value

Returns the component color in the range 0-255.

Related

_ColorGetGreen, _ColorGetRed, _ColorGetRGB

Example

#include <Color.au3>
#include <MsgBoxConstants.au3>

Local $iBlueColor = _ColorGetBlue(0x8080ff)
MsgBox($MB_SYSTEMMODAL, "AutoIt", $iBlueColor)