Interface IPropertyValueConverter
Represents the interface to provide the method for converting the value.
Namespace: Syncfusion.XForms.DataForm
Assembly: Syncfusion.SfDataForm.XForms.dll
Syntax
public interface IPropertyValueConverter
Methods
Convert(Object)
Converts a value to type which is compatible for specific editor.
Declaration
object Convert(object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | value | the value. |
Returns
| Type | Description |
|---|---|
| System.Object | converted value. |
ConvertBack(Object)
Converts a value to underlying type.
Declaration
object ConvertBack(object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | value | the value. |
Returns
| Type | Description |
|---|---|
| System.Object | converted value. |