Base class for drawing elements.
Drawing elements are objects contained in views that define the contents of a drawing. They include 2D geometry and view instances.
new Element():
Element
Element
get id():
bigint
Returns the unique identifier of the object.
bigint
get uuid():
`${string}-${string}-${string}-${string}-${string}`|null
UUID of the drawing element.
The value is null if no UUID is assigned.
`${string}-${string}-${string}-${string}-${string}` | null
set uuid(
uuid):void
Sets the UUID of the drawing element.
`${string}-${string}-${string}-${string}-${string}` | null
UUID to assign to the drawing element.
void
abstractaccept(visitor):void
Accepts a drawing element visitor.
Visitor to accept.
void