Table of Contents

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
object
BOBStepChangeEventArgs

Constructors

BOBStepChangeEventArgs(int, int)

Initializes a new BOBStepChangeEventArgs.

public BOBStepChangeEventArgs(int from, int to)

Parameters

from int
to int

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