Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / IsTrackingViewState Property
Example


In This Topic
    IsTrackingViewState Property (SheetView)
    In This Topic
    Gets or sets whether the control tracks the current sheet view state.
    Syntax
    'Declaration
     
    
    Public Property IsTrackingViewState As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim value As Boolean
     
    instance.IsTrackingViewState = value
     
    value = instance.IsTrackingViewState
    public bool IsTrackingViewState {get; set;}

    Property Value

    Boolean: true to have the component track the view state; false otherwise
    Remarks

    Set this property to true to save the current sheet, including the models to a session state. Setting this property to true also updates the data model when the data is edited.

    Set this property to false to prevent an update of the data model when the data is edited and to prevent the current view models being saved. If you set this property to false, you must handle the editing events to account for changes to the data.

    Setting this property to false results in much smaller output. Keep this in mind when setting this property.

    Example
    This example turns off the view state for the component.
    See Also