Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / ISheetDataModel Interface / IsEditable Method
Row index of the cell
Column index of the cell


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; otherwise, false
    See Also