CommentsCollection
AddComment Method (Int32, Int32)
 | 
Adds comment to the specified row and column.
Namespace:
Spire.Xls.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public ExcelComment AddComment(
	int rowIndex,
	int columnIndex
)
 
Public Function AddComment ( 
	rowIndex As Integer,
	columnIndex As Integer
) As ExcelComment
 
public:
ExcelComment^ AddComment(
	int rowIndex, 
	int columnIndex
)
 
member AddComment : 
rowIndex : int * 
columnIndex : int -> ExcelComment 
 
 
 
Parameters
- 
rowIndex
 
- 
Type:
System
Int32
Row index..
 
- 
columnIndex
 
- 
Type:
System
Int32
Column index.
 
Return Value
Type:
ExcelComment
Created comment object.
 
See Also