Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 733 Bytes

File metadata and controls

34 lines (27 loc) · 733 Bytes

FPenBack

Description

Procedure FPenBack returns the current pen background color. RGB values are in the range of 0~65535.

PROCEDURE FPenBack(
				VAR red   : LONGINT;
				VAR green : LONGINT;
				VAR blue  : LONGINT);
def vs.FPenBack():
    return (red, green, blue)

Parameters

Name Type Description
red LONGINT Returns RGB color component value.
green LONGINT Returns RGB color component value.
blue LONGINT Returns RGB color component value.

See Also

VS Functions: RGBToColorIndex | ColorIndexToRGB

Version

Availability: from All Versions

Category