New to Telerik UI for .NET MAUIStart a free 30-day trial

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:

C#
public class DataFormEditorLengthValidationRule : DataFormEditorPropertyValidationRule

Inheritance: objectDataFormValidationRuleDataFormEditorValidationRuleDataFormEditorPropertyValidationRuleDataFormEditorLengthValidationRule

Inherited Members DataFormEditorPropertyValidationRule.ErrorMessagePropertyDataFormEditorPropertyValidationRule.ErrorMessage

Constructors

C#
public DataFormEditorLengthValidationRule()

Fields

MaximumLengthProperty

BindableProperty

Identifies the MaximumLength property.

C#
public static readonly BindableProperty MaximumLengthProperty

MinimumLengthProperty

BindableProperty

Identifies the MinimumLength property.

C#
public static readonly BindableProperty MinimumLengthProperty

Properties

Gets or sets the maximum allowed string length of the current validated value.

C#
public int? MaximumLength { get; set; }
Remarks:

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.

C#
public int? MinimumLength { get; set; }
Remarks:

When set to null, the property indicates that there is no minimum length constraint.