create_id property

create_id property

Gets and sets create id for this shape.

Example

from uuid import uuid4

print(shape.create_id)
g = uuid4()
shape.create_id = g
print(shape.create_id)

Definition:

@property
def create_id(self):
    ...
@create_id.setter
def create_id(self, value):
    ...

See Also