[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.AddCommentThreaded

AddCommentThreaded Method

AddCommentThreaded(string, string)

Adds a threaded comment to the current IRange.

Declaration
ICommentThreaded AddCommentThreaded(string text, string author = null)
Function AddCommentThreaded(text As String, Optional author As String = Nothing) As ICommentThreaded
Parameters
Type Name Description
string text

The text you want to add.

string author

The name of the author.

Returns
Type Description
ICommentThreaded

The newly added threaded comment.

Examples
IRange range = worksheet.Range["A1"];
ICommentThreaded comment = range.AddCommentThreaded("Review this value.");
string text = comment.Text;