Skip to main content

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?