Stepper Constructors

Definition

Overloads

Stepper()

Initializes a new instance of the Stepper class.

Stepper(Double, Double, Double, Double)

Initializes a new instance of the Stepper class.

Stepper()

Initializes a new instance of the Stepper class.

public Stepper ();

Applies to

Stepper(Double, Double, Double, Double)

Initializes a new instance of the Stepper class.

public Stepper (double min, double max, double val, double increment);
new Xamarin.Forms.Stepper : double * double * double * double -> Xamarin.Forms.Stepper

Parameters

min
System.Double

The minimum selectable value.

max
System.Double

The maximum selectable value.

val
System.Double

The current selected value.

increment
System.Double

The increment by which Value is increased or decreased.

Applies to