UserInteractionLevel Enumeration |
Determines the degree of interaction with the user during operations.
Namespace: Altaxo.GuiAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public enum UserInteractionLevel
Members Member name | Value | Description |
---|
None | 0 |
No interaction with the user. Warnings will be ignored, and errors usually throw an exception.
|
InteractOnErrors | 1 |
Interaction with the user only if errors occured. Warnings will be ignored.
|
InteractOnWarningsAndErrors | 2 |
Interaction with the user only if errors or warnings occured.
|
InteractAlways | 3 |
Always interaction with the user. This means that in any case for instance a dialog will be presented to the user.
|
See Also