SpreadJS Documentation
GC.Spread.Sheets Namespace / Events type / CommentChanged Event
The sheet that triggered the event.
The sheet's name.
The comment that triggered the event.
The name of the comment's property that has changed.
In This Topic
    CommentChanged Event
    In This Topic
    Occurs when any comment has changed.
    Syntax
    var instance; // Type: Events
    instance.CommentChanged = function(sheet, sheetName, comment, propertyName) { };
    CommentChanged = function ( 
       sheet : Worksheet,
       sheetName : string,
       comment : Comment,
       propertyName : string
    ) { };

    Parameters

    sheet
    The sheet that triggered the event.
    sheetName
    The sheet's name.
    comment
    The comment that triggered the event.
    propertyName
    The name of the comment's property that has changed.
    Example
    This example uses the CommentChanged event.
    activeSheet.bind(GC.Spread.Sheets.Events.CommentChanged, function (e, info) {
        alert("changed");
    });
    See Also

    Reference

    Events type