DRAW.ELLIPSE
Define an ellipse on a given drawing.
Syntax
=DRAW.ELLIPSE(UnqiueId, Container, Name, X, Y, Width, Height, LineFormat, FillFormat, Attributes, Events, Angle, RotCenter)
Arguments
Name | Description |
---|---|
UniqueId | Unique Id of drawing object. Should not be modified and must be unique. |
Container | Optional. Name of the container object this object is placed within. Coordinates are relative then. |
Name | Name of drawing object. Must be unique. |
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 |
LineFormat | Optional. Options: - None for no line - Hexadecimal color value ( #FF0000 for Red) - JSON String created using lineformat |
FillFormat | Optional. Options: - "None" for no fill - Hexadecimal color value ("#FF0000" for Red) - JSON String created using FILLPATTERN, FILLLINEARGRADIENT, FILLRADIALGRADIENT |
Attributes | Optional. JSON String created using ATTRIBUTES |
Events | Optional. JSON String created using EVENTS |
Angle | Optional. Angle in radians. |
RotCenter | Optional. This defines, where the object rotates around: 0 : Top left corner 1 : Top center 2 : Top right corner 4 : Center (default) 5 : Right center 6 : Bottom left corner 7 : Bottom center 8 : Bottom right corner |
Return Value
TRUE, if ellipse could be created.
Example
Function | Result | Comment |
---|---|---|
=DRAW.ELLIPSE("ID1", "", "Ellipse1", 1000, 1000, 2000, 3000) | TRUE | Draw an ellipse, having a size of 2 by 3 cm at the position 1cm, 1cm. |