getColorBlue
function getColorBlue: integer;
Returns the blue component value of the current color.
begin
setColor(0, 0, 127);
if getColorBlue <> 127 then
begin
drawText('This should never happen', 0, 0);
repaint;
end;
delay(1000);
end.
See also: setColor, getColorRed, getColorGreen