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.3572.0 (4.8.3572.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 occurred. Warnings are ignored.
InteractOnWarningsAndErrors2 Interaction with the user only if errors or warnings occurred.
InteractAlways3 Always interaction with the user. This means that in any case for instance a dialog will be presented to the user.

The UserInteractionLevel type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also