EvObjectZOrder Interface
The EvObjectZOrder TS interface defines a blueprint of a JS object that determines the position of a given object item in the stack of object items on a given layer.
Properties
An EvObjectZOrder object has the following properties:
index: numberA number, a position of a given object item in the stack of object items on the given layer.
It is a zero-based index that is
0for the topmost object item on the layer and increases by1for each following object item going down the stack.optional layer: EvItemA Layer item object, a layer which should include a given object item.
Examples
{
index: 1,
layer: {
id: "abcdefg"
}
}
27 March 2025