Represents a numeric editor in the RadDataForm. The actual editor control used is RadNumericInput.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class DataFormRadNumericEditor : DataFormEditor, IRadContentView, IContentView, IPadding, ICrossPlatformLayout, IView, IElement, ITransform
Inheritance: objectRadContentViewDataFormContentViewDataFormItemDataFormEditorDataFormRadNumericEditor...
Implements:
Inherited Members
Constructors
C#
public DataFormRadNumericEditor()
Fields
MaximumProperty
BindableProperty
Identifies the Maximum property.
C#
public static readonly BindableProperty MaximumProperty
MinimumProperty
BindableProperty
Identifies the Minimum property.
C#
public static readonly BindableProperty MinimumProperty
StepProperty
BindableProperty
Identifies the Step property.
C#
public static readonly BindableProperty StepProperty
StringFormatProperty
BindableProperty
Identifies the StringFormat property.
C#
public static readonly BindableProperty StringFormatProperty
Properties
Gets or sets the maximum value of the RadNumericInput.
C#
public double? Maximum { get; set; }
Gets or sets the minimum value of the RadNumericInput.
C#
public double? Minimum { get; set; }
Gets or sets the increment step of the RadNumericInput.
C#
public double? Step { get; set; }
Gets or sets the string format of the RadNumericInput.
C#
public string StringFormat { get; set; }