You're currently browsing the Ignition 8.0 docs. Click here to view the latest docs.

This function is used by Ignition's Expression language.

Description

Creates a color using the given red, green, and blue amounts, which are integers between 0-255. The optional alpha channel to the color controls transparency.

Note: This function was designed to return color objects to Vision bindings, and will not work with Perspective bindings. Instead, Perspective color properties can simply use string hex codes to derive a color from a binding. Example: "#00FF00".

Syntax

color(red, green, blue[, alpha])

  • Parameter

int red - The intensity of Red, between 0 - 255.

int green - The intensity of Green, between 0 - 255.

int blue - The intensity of Blue, between 0 - 255.

int alpha - Optional. The amount of transparency, between 0 - 255.

  • Results

Color - Returns a color with the given RGB value.

Examples

There are no expression function examples associated with this expression function.

  • No labels