Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 749 Bytes

File metadata and controls

34 lines (27 loc) · 749 Bytes

FPenFore

Description

Procedure FPenFore returns the current pen foreground color of the document. RGB values are in the range of 0~65535.

PROCEDURE FPenFore(
				VAR red   : LONGINT;
				VAR green : LONGINT;
				VAR blue  : LONGINT);
def vs.FPenFore():
    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