EvLayerAttributes Interface
The EvLayerAttributes TS interface defines a blueprint of a JS object with the attributes of a layer on a page in an Envision document.
Properties
An EvLayerAttributes object has the following properties:
id: string;A string, the unique persistent internal UUID of a given layer item. It will not change as long as the layer exists.
isLocked: boolean;A Boolean, a flag indicating whether a given layer is locked (
true) or unlocked (false).isVisible: boolean;A Boolean, a flag indicating whether a given layer is visible (
true) or hidden (false) on the page.name: string;A string, the name of a given layer.
Examples
{
id: "abcdefg",
isLocked: true,
isVisible: false,
name: "Title",
}
13 March 2025