Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / IsColumnBound Method
Column index to check
Example


In This Topic
    IsColumnBound Method (DefaultSheetDataModel)
    In This Topic
    Determines whether the specified column is bound to a data source column.
    Syntax
    'Declaration
     
    
    Public Function IsColumnBound( _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.IsColumnBound(column)
    public bool IsColumnBound( 
       int column
    )

    Parameters

    column
    Column index to check

    Return Value

    true if the column is bound; false otherwise
    Example
    This example binds the DefaultSheetDataModel to a DataTable and the values of the IsColumnBound, IsEditable, IsEmpty and IsRowUsed are returned to a list box.
    See Also