Skip to content

CanvasElementOptions🔗

Definition🔗

class CanvasElementOptions:
    name: str
    type_val: str
    # TODO: figure out how to define this (element config(s))
    config: typing.Optional[object]
    constraint: typing.Optional[canvas.Constraint]
    placement: typing.Optional[canvas.Placement]
    background: typing.Optional[canvas.BackgroundConfig]
    border: typing.Optional[canvas.LineConfig]
    connections: typing.Optional[list[canvas.CanvasConnection]]

Methods🔗

to_json🔗

Converts this object into a representation that can easily be encoded to JSON.

def to_json() -> dict[str, object]

from_json🔗

Builds this object from a JSON-decoded dict.

@classmethod
def from_json(data: dict[str, typing.Any]) -> typing.Self

See also🔗