Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / GetDataView Method / GetDataView(Boolean) Method
Whether to recreate the DataView
Example


In This Topic
    GetDataView(Boolean) Method
    In This Topic
    Gets the DataView object associated with this model.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetDataView( _
       ByVal create As Boolean _
    ) As DataView
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim create As Boolean
    Dim value As DataView
     
    value = instance.GetDataView(create)
    public DataView GetDataView( 
       bool create
    )

    Parameters

    create
    Whether to recreate the DataView

    Return Value

    DataView object containing the view of the data table
    Example
    This example returns the data view object associated with the model
    See Also