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

Contents
[ ]

Aspose.Cells GridWeb الآن يدعم إضافة وإزالة التعليقات من الجانب العميل. لهذا الغرض، يوفر الواجهة البرمجية للمستخدم الوظائف “addcomments” و “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>