Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / ISheetDataModel Interface / SetNote Method
Row index
Column index
String for note
Example


In This Topic
    SetNote Method (ISheetDataModel)
    In This Topic
    Sets the note for a cell at the specified row and column.
    Syntax
    'Declaration
     
    
    Sub SetNote( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As String _
    ) 
    'Usage
     
    
    Dim instance As ISheetDataModel
    Dim row As Integer
    Dim column As Integer
    Dim value As String
     
    instance.SetNote(row, column, value)
    void SetNote( 
       int row,
       int column,
       string value
    )

    Parameters

    row
    Row index
    column
    Column index
    value
    String for note
    Example
    This example returns the previously set note for the specified cell in the model.
    See Also