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.