GridCommentCollection.Add

Add(int, int)

Adds a comment to the collection.

public int Add(int row, int column)
ParameterTypeDescription
rowInt32Cell row index.
columnInt32Cell column index.

Return Value

Comment object index.

See Also


Add(string)

Adds a comment to the collection.

public int Add(string cellName)
ParameterTypeDescription
cellNameStringCell name.

Return Value

Comment object index.

See Also


Add(string, string)

Adds a comment to a specified cell by cell name.

public void Add(string cellName, string text)
ParameterTypeDescription
cellNameStringName of grid cell.
textStringText of comment.

See Also


Add(int, int, string)

public void Add(int row, int column, string text)

See Also