Interface IPropertyValueConverter
Represents the interface to provide the method for converting the value.
Namespace: Syncfusion.Android.DataForm
Assembly: Syncfusion.SfDataForm.Android.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. |