Kommentare hinzufügen/entfernen von Client Seite

Contents
[ ]

Aspose.Cells GridWeb unterstützt jetzt das Hinzufügen und Entfernen von Kommentaren von der Clientseite. Dafür bietet die API die Funktionen “addcomments” und “delcomments”. Der folgende Code-Demonstrationsausschnitt zeigt das Hinzufügen und Entfernen von Kommentaren von der Clientseite in GridWeb.

Beispielcode

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
<script>
function addComment() {
gridwebinstance.getByIndex(0).addcomments({note:'hello',author:'aspose'});
}
function removeComment() {
gridwebinstance.getByIndex(0).delcomments();
}
</script>