Spread for ASP.NET 8.0 Product Documentation
SaveViewState Method (SheetView)
Example 


Saves the current view state of the sheet.
Syntax
'Declaration
 
Public Overridable Function SaveViewState() As Object
'Usage
 
Dim instance As SheetView
Dim value As Object
 
value = instance.SaveViewState()
public virtual object SaveViewState()

Return Value

Object in which to save view state
Remarks
Once you have saved the session state by calling the SaveViewState method, you can load the session state by calling the LoadViewState method.
Example
This example loads the saved view state from one sheet into another.
FarPoint.Web.Spread.SheetView sv;
string s;
s = "D:\\nums.txt";
sv = FpSpread1.ActiveSheetView;
sv.LoadTextFile(s, true);

object o;
o = sv.SaveViewState();

FpSpread2.ActiveSheetView.LoadViewState(o);
Dim sv As FarPoint.Web.Spread.SheetView
Dim s As String
s = "D:\nums.txt"
sv = FpSpread1.ActiveSheetView
sv.LoadTextFile(s, True)

Dim o As Object
o = sv.SaveViewState()

FpSpread2.ActiveSheetView.LoadViewState(o)
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetView Class
SheetView Members
LoadViewState Method
IsTrackingViewState Property

User-Task Documentation

Maintaining State

 

 


Copyright © GrapeCity, inc. All rights reserved.