Enum SessionMode

SessionMode enumeration

Represents the session mode of the grid.

public enum SessionMode

Values

NameValueDescription
Session0Uses the system session to store/recover the grid’s sheet data automatically.
ViewState1Uses the page’s viewstate to store/recover the grid’s sheet data automatically.
Custom2Uses the LoadCustomData event to load the grid’s sheet data manually. And uses the SheetDataUpdated event to save the grid’s sheet data.
File3Uses the system file to store/recover the grid’s sheet data automatically,user need to set SessionStorePath to specify the file directory.

See Also