Skip to main content
⚠️ Archived Version

You are viewing documentation for Design Editor version 7.2, which is no longer actively maintained. For the latest features and updates, please refer to the current version (7.3).

Interface: IUnchangedItems

A structure used by (Editor:class).getUnchangedItems to store a return value.

Example

const unchangedItems = await editor.getUnchangedItems();

// When unchanged items have been obtained successfully.
if (unchangedItems.items.length > 0) {
unchangedItems.items.forEach(function (logItems) {
console.log(logItems);
});
} else {
console.log("There are no unchanged items");
}

Properties

items

items: object[]

An array of unchanged items.

name

name: string

The item name.

surface

surface: number

The surface (page) associated with the item.

Was this page helpful?