SheetXL - v0.3.20
    Preparing search index...

    Interface IComment

    TODO - Implement IComment. TODO - how to make this threaded? TODO - rationalize this with notes? -Each Comment will have a unique id and a parent that it is a reply to.

    ? How to add root range.addComment(content) ? (only allows for 1 root)

    https://learn.microsoft.com/en-us/javascript/api/office-scripts/excelscript/excelscript.contenttype?view=office-scripts

    Excel has a resolved/done status Excel has mentions?

    interface IComment {
        delete(): void;
        getContent(): string;
        getCreationDate(): Date;
        getUserId(): string;
        setContent(content: string): void;
    }
    Index

    Methods

    • Returns void

    • Returns string

    • Returns Date

    • Returns string

    • Parameters

      • content: string

      Returns void