Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

Method Common.ColorGetBlueChannel

Extracts Blue Channel from Integer Argb color structure

Usage

Function ZAP.Common.ColorGetBlueChannel ( 
  Integer ArgbColor,
  Boolean Report [Optional]
)

Parameters

ArgbColor

Type: Integer

Integer Argb color structure

Report (optional)

Type: Boolean

Default Value: False

Generate report for this step

Returns

Blue channel data

Example

VBScript

' Make gray (RGB: 128, 128, 128) color and display blue channel in message box
color = Zap.Common.ColorMakeFromRGB(128, 128, 128)
msgbox Zap.Common.ColorGetBlueChannel(color, True)

JavaScript

// Make gray (RGB: 128, 128, 128) color and display blue channel in message box
var color = Zap.Common.ColorMakeFromRGB(128, 128, 128);
alert(Zap.Common.ColorGetBlueChannel(color, true));

Documentation Categories

ZAPTEST

FARM

LOAD