Spread WPF 17
GrapeCity.Excel Namespace / IExcelReader Interface / SetCellNote Method
The zero based sheet index used to locate the IExcelWorkbook instance
The zero based cell row index
The zero based cell column index
A flag used to indicate whether the note style is sticky note.
The note string used to set the cell note.


In This Topic
    SetCellNote Method
    In This Topic
    Sets cell note for the specified cell.
    Syntax
    'Declaration
     
    Sub SetCellNote( _
       ByVal sheet As Short, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal stickyNote As Boolean, _
       ByVal note 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 sheet,
       int row,
       int column,
       bool stickyNote,
       string note
    )

    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