Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetNote Method
Row index
Column index
Example


In This Topic
    GetNote Method (SheetView)
    In This Topic
    Gets the cell note for a cell at the specified row and column.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetNote( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As String
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As String
     
    value = instance.GetNote(row, column)
    public virtual string GetNote( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index

    Return Value

    String containing the cell note for the specified cell
    Remarks

    Specify a cell note for a cell by calling the SetNote method. Cells with notes do not show any other indication other than displaying the note when the pointer is over the cell.

    Example
    This example returns the note set for the specified cell.
    See Also