[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IComment

Interface IComment

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a cell comment.

public interface IComment

Properties

AnchorCell

Gets the anchor cell of the comment.

IRange AnchorCell { get; }

Property Value

IRange

Author

Gets the author of the comment.

string Author { get; }

Property Value

string

Shape

Returns the IShape object that represents the shape attached to the specified comment.

IShape Shape { get; }

Property Value

IShape

Text

Gets or sets the comment text.

string Text { get; set; }

Property Value

string

Visible

Determines whether the object is visible.

bool Visible { get; set; }

Property Value

bool

Methods

Delete()

Deletes the object.

void Delete()

FromJson(string)

Generates the comment from the JSON string.

void FromJson(string json)

Parameters

json string

the JSON string that contains comment info.

Next()

Returns the IComment object that represents the next comment.

IComment Next()

Returns

IComment

returns IComment.

Previous()

Returns the IComment object that represents the previous comment.

IComment Previous()

Returns

IComment

The previous comment object.

ToJson()

Generates a JSON string from the comment.

string ToJson()

Returns

string

the JSON string that contains comment info.