'Declaration
Public Overloads Function ARGB( _ ByVal Alpha As Byte, _ ByVal Red As Byte, _ ByVal Green As Byte, _ ByVal Blue As Byte _ ) As GdPictureColor
public GdPictureColor ARGB( byte Alpha, byte Red, byte Green, byte Blue )
public function ARGB( Alpha: Byte; Red: Byte; Green: Byte; Blue: Byte ): GdPictureColor;
public function ARGB( Alpha : byte, Red : byte, Green : byte, Blue : byte ) : GdPictureColor;
public: GdPictureColor ARGB( byte Alpha, byte Red, byte Green, byte Blue )
public: GdPictureColor ARGB( byte Alpha, byte Red, byte Green, byte Blue )
Parameters
- Alpha
- The value for the alpha component also known as a transparency. Use the value between 0 (full transparency) and 255 (full opacity).
- Red
- The value for the red component. Use the value between 0 and 255.
- Green
- The value for the green component. Use the value between 0 and 255.
- Blue
- The value for the blue component. Use the value between 0 and 255.
Return Value
A Color object representing a required color.