跳到主要内容

Delete

Deletes the ApiComment object.

Syntax

expression.Delete();

expression - A variable that represents a ApiComment class.

Parameters

This method doesn't have any parameters.

Returns

This method doesn't return any data.

Example

This example deletes the ApiComment object.

var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A1").SetValue("1");
var oRange = oWorksheet.GetRange("A1");
oRange.AddComment("This is just a number.");
var oComment = oRange.GetComment();
oComment.Delete();
oWorksheet.GetRange("A3").SetValue("The comment was just deleted from A1.");