Class BOBStepChangeEventArgs
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
Mutable arguments raised by BOBStepper.OnStepChange before applying a step
transition. Set Cancel to true from a handler to keep
the active step at From.
public sealed class BOBStepChangeEventArgs
- Inheritance
-
objectBOBStepChangeEventArgs
Constructors
BOBStepChangeEventArgs(int, int)
Initializes a new BOBStepChangeEventArgs.
public BOBStepChangeEventArgs(int from, int to)
Parameters
frominttoint
Properties
Cancel
When set to true, the transition is aborted.
public bool Cancel { get; set; }
Property Value
- bool
From
Index of the step the user is leaving.
public int From { get; }
Property Value
- int
To
Index of the step the user is moving to.
public int To { get; }
Property Value
- int