Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 908 Bytes

File metadata and controls

44 lines (36 loc) · 908 Bytes

FFillFore

Description

Procedure FFillFore returns the current fill foreground color. RGB values are in the range of 0~65535.

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

Examples

VectorScript

FFillFore(redValue,greenValue,blueValue);

Python

redValue,greenValue,blueValue = vs.FFillFore()

See Also

VS Functions: RGBToColorIndex | ColorIndexToRGB

Version

Availability: from All Versions

Category