'Declaration
Public Overloads Function ARGB( _ ByVal Red As Byte, _ ByVal Green As Byte, _ ByVal Blue As Byte _ ) As GdPictureColor
public GdPictureColor ARGB( byte Red, byte Green, byte Blue )
public function ARGB( Red: Byte; Green: Byte; Blue: Byte ): GdPictureColor;
public function ARGB( Red : byte, Green : byte, Blue : byte ) : GdPictureColor;
public: GdPictureColor ARGB( byte Red, byte Green, byte Blue )
public: GdPictureColor ARGB( byte Red, byte Green, byte Blue )
Parameters
- 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.