İstemci Tarafından Yorum Ekle/Kaldır
Contents
[
Hide
]
Bu konuda, Aspose.Cells.GridWeb denetiminde istemci tarafında Yorum ekleme ve kaldırma açıklanır.
Aspose.Cells GridWeb artık istemci tarafında Yorum eklemeyi ve kaldırmayı destekliyor. Bunun için API, “addcomments” ve “decomments” fonksiyonlarını sağlar. Aşağıdaki kod parçacığı, GridWeb’de istemci tarafında yorum eklemeyi ve kaldırmayı gösterir.
Basit kod
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> |