DRAW.LINE
Define a graphical line.
Syntax
=DRAW.LINE(X1, Y1, X2, Y2, [LineColor])
Arguments
Name | Type | Description |
---|---|---|
X1 | Number | X Start Coordinate in 1/100th mm |
Y1 | Number | Y Start Coordinate in 1/100th mm |
X2 | Number | X End Coordinate in 1/100th mm |
Y2 | Number | Y End Coordinate in 1/100th mm |
LineColor (optional) | Color | Line Color Value Options: "none": Invisible "#FFFFFF": White "#000000": Black "#FF0000": Red "#00FF00": Green "#0000FF": Blue "#FFFF00": Yellow "#AAAAAA": Grey |
Return
Type | Description |
---|---|
Boolean | TRUE, if line could be created. |
Hint
This function should not be used in a cell
Examples
Formula | Result | Comment |
---|---|---|
| TRUE | Draw a line. |