You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/behaviors/validationbehavior.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,14 @@ The ValidationBehavior allows users to create custom validation behaviors. All o
14
14
15
15
|Property |Type |Description |
16
16
|---------|---------|---------|
17
-
| ForceValidateCommand |[ICommand](xref:System.Windows.Input.ICommand)| Allows the user to provide a custom ICommand that handles forcing validation. |
18
-
| Flags | ValidationFlags | Provides an enumerated value that specifies how to handle validation. |
19
-
| InvalidStyle |[Style](xref:Xamarin.Forms.Style)| The Style to apply to the element when validation fails. |
20
-
| IsValid | bool | Indicates whether or not the current value is considered valid. |
17
+
| ForceValidateCommand |[ICommand](xref:System.Windows.Input.ICommand)| Allows the user to provide a custom ICommand that handles forcing validation. This is a bindable property. |
18
+
| Flags | ValidationFlags | Provides an enumerated value that specifies how to handle validation. This is a bindable property. |
19
+
| InvalidStyle |[Style](xref:Xamarin.Forms.Style)| The Style to apply to the element when validation fails. This is a bindable property. |
20
+
| IsNotValid | bool | Indicates whether or not the current value is considered invalid. This is a bindable property. |
21
+
| IsValid | bool | Indicates whether or not the current value is considered valid. This is a bindable property. |
21
22
| ValidStyle |[Style](xref:Xamarin.Forms.Style)| The Style to apply to the element when validation is successful. |
22
-
| Value | object | The value to validate. |
23
-
| ValuePropertyName | string | Allows the user to override the property that will be used as the value to validate. |
23
+
| Value | object | The value to validate. This is a bindable property. |
24
+
| ValuePropertyName | string | Allows the user to override the property that will be used as the value to validate. This is a bindable property. |
0 commit comments