Class DataFormEditorPropertyValidationRule
Base abstract class for all property validation rules of a DataFormEditor.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class DataFormEditorPropertyValidationRule : DataFormEditorValidationRule
Constructors
DataFormEditorPropertyValidationRule()
Declaration
protected DataFormEditorPropertyValidationRule()
Fields
ErrorMessageProperty
Identifies the ErrorMessage property.
Declaration
public static readonly BindableProperty ErrorMessageProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ErrorMessage
Gets or sets an error message describing the validation error. This can be either a fixed error message or a string format mask with placeholders for the validated property and the provided validation constraints. The exact form of the format mask depends on the specific validation rule. For more information see the descendants of the DataFormEditorPropertyValidationRule class.
Declaration
public string ErrorMessage { get; set; }
Property Value
System.String
|