public enum wrUserPreferenceStorage : System.Enum
public enum wrUserPreferenceStorage : System.Enum
Member | Value | Description |
---|---|---|
Cookie | 0 | User Preferences are stored in the browser's HTML5 local storage. This is the default behavior as it does not require any additional setup. However, a user’s preferences will not be carried over to other machines or browsers and will be lost if the user clears their browser’s data. |
ExternalInterface | 1 | User Preferences are stored and retrieved via the External Interface. This requires the host application to implement the methods SetUserPreference and GetUserPreferences in the External Interface, but User Preferences will be preserved for a user across browsers and machines |
None | 3 | Users will not have the ability modify User Preference features. The User Preferences button will be hidden. |
ServerEvent | 2 | User Preferences are stored and retrieved via Server Events. This requires the global events onGetUserPreferences and onSetUserPreferences to be implemented. |
System.Object
System.ValueType
System.Enum
WebReports.Api.wrUserPreferenceStorage