Sets cell note for the specified cell.
Syntax
'Declaration
Sub SetCellNote( _
ByVal As System.Short, _
ByVal As System.Integer, _
ByVal column As System.Integer, _
ByVal As System.Boolean, _
ByVal As System.String _
)
'Usage
Dim instance As IExcelReader
Dim sheet As System.Short
Dim row As System.Integer
Dim column As System.Integer
Dim stickyNote As System.Boolean
Dim note As System.String
instance.SetCellNote(sheet, row, column, stickyNote, note)
void SetCellNote(
System.short ,
System.int ,
System.int column,
System.bool ,
System.string
)
Parameters
- sheet
- The zero based sheet index used to locate the IExcelWorkbook instance
- row
- The zero based cell row index
- column
- The zero based cell column index
- stickyNote
- A flag used to indicate whether the note style is sticky note.
- note
- The note string used to set the cell note.
See Also