Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 867 Bytes

File metadata and controls

45 lines (36 loc) · 867 Bytes

FFillBack

Description

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

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

FFillBack(redValue,greenValue,blueValue);

==== Python ====

redValue,greenValue,blueValue = vs.FFillBack()

See Also

VS Functions: RGBToColorIndex | ColorIndexToRGB

Version

Availability: from All Versions

Category

  • Document Attributes