StepperValidDirections Enumeration |
Valid stepper directions for the (typically) up/down buttons
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax [FlagsAttribute]
public enum StepperValidDirections
<FlagsAttribute>
Public Enumeration StepperValidDirections
[<FlagsAttribute>]
type StepperValidDirections
Members
| Member name | Value | Description |
---|
| None | 0 |
Neither the up or down buttons are valid
|
| Up | 1 |
Specifies that the up/increase button is a valid direction for the stepper
|
| Down | 2 |
Specifies that the down/decrease button is a valid direction for the stepper
|
| Both | 3 |
Combines both the Up and Down flags.
|
Remarks
Note that some platforms do not actually disable the up or down buttons, but just won't trigger the
Step
event when it is not valid.
See Also