إضافة / إزالة التعليقات من جانب العميل
Contents
[
Hide
]
يناقش هذا الموضوع إضافة التعليقات وإزالتها من جانب العميل في عنصر تحكم Aspose.Cells.GridWeb.
Aspose.Cells GridWeb يدعم الآن إضافة وإزالة التعليقات من جانب العميل. لهذا ، فإن API يوفر وظائف “الإضافات” و “delcomments”. يوضح مقتطف الشفرة التالي إضافة وإزالة التعليقات من جانب العميل في GridWeb.
عينة من الرموز
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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> |