DRAW.RECTANGLE
Define a rectangle on a given drawing.
Syntax
=DRAW.RECTANGLE(X, Y, Width, Height, [LineColor], [FillColor], [Angle])
Arguments
| Name | Description |
|---|---|
| X | X Coordinate in 1/100th mm |
| Y | Y Coordinate in 1/100th mm |
| Width | Width in 1/100th mm |
| Height | Height in 1/100th mm |
| LineColor (optional) | Options: - None for no line - Hexadecimal color value ( #FF0000 for Red) |
| FillColor (optional) | Hexadecimal color value (#FF0000 for Red) |
| Angle (optional) | Angle in radians. |
Return
TRUE, if rectangle could be created.
Hint
This function should not be used in a cell
Examples
| Formula | Result | Comment |
|---|---|---|
| TRUE | A rectangle. |