Method Common.ColorGetBlueChannel
Extracts Blue Channel from Integer Argb color structureUsage
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));
Comment
Make gray (RGB: 128, 128, 128) color and save it's blue channel to variable