Sets cell note for the specified cell.
Syntax
'Declaration
Sub SetCellNote( _
ByVal As Short, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Boolean, _
ByVal As String _
)
'Usage
Dim instance As IExcelReader
Dim sheet As Short
Dim row As Integer
Dim column As Integer
Dim stickyNote As Boolean
Dim note As String
instance.SetCellNote(sheet, row, column, stickyNote, note)
void SetCellNote(
short ,
int ,
int column,
bool ,
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