Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / ISheetDataModel Interface / IsEditable Method
Row index of the cell
Column index of the cell
Example


In This Topic
    IsEditable Method (ISheetDataModel)
    In This Topic
    Determines whether the contents of the cell at the specified row and column are editable.
    Syntax
    'Declaration
     
    
    Function IsEditable( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As ISheetDataModel
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsEditable(row, column)
    bool IsEditable( 
       int row,
       int column
    )

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell

    Return Value

    true if the cell contents can be edited; false otherwise
    Example
    This example returns whether the specified cell can be edited in the model.
    See Also