إضافة / إزالة التعليقات من جانب العميل

Aspose.Cells GridWeb يدعم الآن إضافة وإزالة التعليقات من جانب العميل. لهذا ، فإن API يوفر وظائف “الإضافات” و “delcomments”. يوضح مقتطف الشفرة التالي إضافة وإزالة التعليقات من جانب العميل في GridWeb.

عينة من الرموز

// 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>