ezLCD SDK Documentation

EZLCDColor Constructor (Byte, Byte, Byte)

 [This is preliminary documentation and subject to change.]

Constructs an 8-bit color object from red green and blue values.

Note   The three values represent a 24-bit color. Some data may be lost in the conversion to 8-bit.

[Visual Basic]
Public Sub New( _ 
   ByVal Byte As Byte, _ 
   ByVal Byte As Byte, _ 
   ByVal Byte As Byte _ 
)
[C#]
public EZLCDColor(
   byte Byte,
   byte Byte,
   byte Byte
);
[C++]
public: EZLCDColor(
   char Byte,
   char Byte,
   char Byte
);
[JScript]
public function EZLCDColor(
   Byte Byte,
   Byte Byte,
   Byte Byte
);

Parameters

red
The red component of the color.
green
The green component of the color.
blue
The blue component of the color.

See Also

EZLCDColor Structure | EZLCD.Core Namespace | EZLCDColor Constructor Overload List