Skip to main content
Version: Streamsheets 2.3

DRAW.POLYGON

Define a graphical polygon.

Syntax

=DRAW.POLYGON(X, Y, Width, Height, LineColor, Angle, PointRange, Close)

Arguments

NameDescription
XX Coordinate in 1/100th mm
YY Coordinate in 1/100th mm
WidthWidth in 1/100th mm
HeightHeight in 1/100th mm
LineColorOptional. Options:
- None for no line
- Hexadecimal color value (#FF0000 for Red)
FillColorOptional. Hexadecimal color value (#FF0000 for Red)
AngleOptional. Angle in radians.
PointRangeOptional. Cell Range with coordinates. A coordinate is defined by a fraction of the width and height of the bezier ranging from 0 to . 1 would place the coordinate at the bottom or right corner of the object. The range must have 2 columns. The left column contains the x coordinates and the right column the y coordinates. If the object was drawn using the mouse or one of the predefined objects was used, the given coordinates will be used, as long as no coordinates are defined using this parameter.
CloseOptional. Close bezier curve by connecting the first and last point (Default: TRUE)

Return Value

TRUE, if polygon could be created.

Example

FunctionResultComment
=DRAW.POLYGON(52726,24647,12462,6456)TRUEDraw a polygon using the given coordinates.