'Declaration
Public Function SetTextUnderlineColor( _ ByVal Red As Byte, _ ByVal Green As Byte, _ ByVal Blue As Byte _ ) As GdPictureStatus
public GdPictureStatus SetTextUnderlineColor( byte Red, byte Green, byte Blue )
public function SetTextUnderlineColor( Red: Byte; Green: Byte; Blue: Byte ): GdPictureStatus;
public function SetTextUnderlineColor( Red : byte, Green : byte, Blue : byte ) : GdPictureStatus;
public: GdPictureStatus SetTextUnderlineColor( byte Red, byte Green, byte Blue )
public: GdPictureStatus SetTextUnderlineColor( byte Red, byte Green, byte Blue )
Parameters
- Red
- The amount of red color to be used for the resulting text decoration color. Use the value between 0 and 255.
- Green
- The amount of green color to be used for the resulting text decoration color. Use the value between 0 and 255.
- Blue
- The amount of blue color to be used for the resulting text decoration color. Use the value between 0 and 255.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.