Skip to content

Commit c7f9934

Browse files
authored
Add new property and update "is bindable property" (#79)
* Update validationbehavior.md * Update validationbehavior.md
1 parent 66f33aa commit c7f9934

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/behaviors/validationbehavior.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ The ValidationBehavior allows users to create custom validation behaviors. All o
1414

1515
|Property |Type |Description |
1616
|---------|---------|---------|
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. |
2122
| 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. |
2425

2526
## Sample
2627

0 commit comments

Comments
 (0)