i2 Notebook SDK
Search results for

    Show/hide table of contents

    Home > @i2analyze/notebook-sdk > chart > IRecordChanges > notes

    chart.IRecordChanges.notes property

    Gets the note changes for this record.

    Signature:

    readonly notes?: {
                readonly added: data.IReadOnlyCollection<data.NoteId>;
                readonly changed: data.IReadOnlyCollection<data.NoteId>;
                readonly removed: data.IReadOnlyCollection<data.NoteId>;
            };
    

    Returns: { readonly added: data.IReadOnlyCollection<data.NoteId>; readonly changed: data.IReadOnlyCollection<data.NoteId>; readonly removed: data.IReadOnlyCollection<data.NoteId>; }

    Introduced: version 1.9

    Remarks

    The note changes are categorized as follows: - Added: New notes that were created - Changed: Existing notes whose content was modified - Removed: Notes that were deleted

    Empty sets indicate no changes in that category.

    In this article
    Back to top © N. Harris Computer Corporation