Back to Website
Show / Hide Table of Contents

Interface Editor.IUnchangedItems

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

Package: @aurigma/design-editor-iframe
Examples
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

An array of unchanged items.

Declaration
items: {
            name: string;
            surface: number;
        }[];
Property Value
Type Description
{ name: string; surface: number; }[]

An array of unchanged items.

Was this page helpful?
Thanks for your feedback!
Back to top Copyright © 2001–2025 Aurigma, Inc. All rights reserved.
Loading...
    Thank for your vote
    Your opinion is important to us. To provide details, send feedback.
    Send feedback