Stepper Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Stepper() |
Initializes a new instance of the Stepper class. |
Stepper(Double, Double, Double, Double) |
Initializes a new instance of the Stepper class. |
Stepper()
- Source:
- Stepper.cs
- Source:
- Stepper.cs
Initializes a new instance of the Stepper class.
public:
Stepper();
public Stepper ();
Public Sub New ()
Applies to
Stepper(Double, Double, Double, Double)
- Source:
- Stepper.cs
- Source:
- Stepper.cs
Initializes a new instance of the Stepper class.
public:
Stepper(double min, double max, double val, double increment);
public Stepper (double min, double max, double val, double increment);
new Microsoft.Maui.Controls.Stepper : double * double * double * double -> Microsoft.Maui.Controls.Stepper
Public Sub New (min As Double, max As Double, val As Double, increment As Double)
Parameters
- min
- Double
The minimum selectable value.
- max
- Double
The maximum selectable value.
- val
- Double
The current selected value.
- increment
- Double
The increment by which Value is increased or decreased.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.