Click or drag to resize

UserInteractionLevel Enumeration

Determines the degree of interaction with the user during operations.

Namespace: Altaxo.Gui
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public enum UserInteractionLevel
Members
Member nameValueDescription
None0 No interaction with the user. Warnings will be ignored, and errors usually throw an exception.
InteractOnErrors1 Interaction with the user only if errors occured. Warnings will be ignored.
InteractOnWarningsAndErrors2 Interaction with the user only if errors or warnings occured.
InteractAlways3 Always interaction with the user. This means that in any case for instance a dialog will be presented to the user.
See Also