Validates that the string length of the current value is between the specified minimum and maximum length. The MinimumLength and MaximumLength properties are optional allowing null values. When any of these properties is set to null, that indicates there is no minimum or maximum length constraint.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataFormEditorLengthValidationRule : DataFormEditorPropertyValidationRule
Inheritance: objectDataFormValidationRuleDataFormEditorValidationRuleDataFormEditorPropertyValidationRuleDataFormEditorLengthValidationRule
Inherited Members
Constructors
public DataFormEditorLengthValidationRule()
Fields
MaximumLengthProperty
BindableProperty
Identifies the MaximumLength property.
public static readonly BindableProperty MaximumLengthProperty
MinimumLengthProperty
BindableProperty
Identifies the MinimumLength property.
public static readonly BindableProperty MinimumLengthProperty
Properties
Gets or sets the maximum allowed string length of the current validated value.
public int? MaximumLength { get; set; }
When set to null, the property indicates that there is no maximum length constraint.
Gets or sets the minimum allowed string length of the current validated value.
public int? MinimumLength { get; set; }
When set to null, the property indicates that there is no minimum length constraint.