Class DataFormRadNumericEditor
Represents a numeric editor in the RadDataForm. The actual editor control used is RadNumericInput.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataFormRadNumericEditor : DataFormEditor, IRadContentView, IContentView, IPadding, IDataFormView, IView, IElement, ITransform
Constructors
DataFormRadNumericEditor()
Declaration
public DataFormRadNumericEditor()
Fields
MaximumProperty
Identifies the Maximum property.
Declaration
public static readonly BindableProperty MaximumProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
MinimumProperty
Identifies the Minimum property.
Declaration
public static readonly BindableProperty MinimumProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StepProperty
Identifies the Step property.
Declaration
public static readonly BindableProperty StepProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StringFormatProperty
Identifies the StringFormat property.
Declaration
public static readonly BindableProperty StringFormatProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Maximum
Gets or sets the maximum value of the RadNumericInput.
Declaration
public Nullable<double> Maximum { get; set; }
Property Value
System.Nullable<System.Double>
|
Minimum
Gets or sets the minimum value of the RadNumericInput.
Declaration
public Nullable<double> Minimum { get; set; }
Property Value
System.Nullable<System.Double>
|
Step
Gets or sets the increment step of the RadNumericInput.
Declaration
public Nullable<double> Step { get; set; }
Property Value
System.Nullable<System.Double>
|
StringFormat
Gets or sets the string format of the RadNumericInput.
Declaration
public string StringFormat { get; set; }
Property Value
System.String
|