Class CardCountConverter
Represents a converter that converts the card count value to a string representation.
Inheritance
System.Object
CardCountConverter
Implements
Windows.UI.Xaml.Data.IValueConverter
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.SfKanban.UWP.dll
Syntax
public class CardCountConverter : Object, IValueConverter
Constructors
CardCountConverter()
Declaration
public CardCountConverter()
Methods
Convert(Object, Type, Object, String)
Converts the card count value to a string representation.
Declaration
public object Convert(object value, Type targetType, object parameter, string language)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The card count value to be converted. |
System.Type | targetType | The type of the binding target property. |
System.Object | parameter | An optional parameter to be used in the converter logic. |
System.String | language | The culture to be used in the converter. |
Returns
Type | Description |
---|---|
System.Object | A string representation of the card count value. |
ConvertBack(Object, Type, Object, String)
Converts the string representation of the card count value back to the card count value.
Declaration
public object ConvertBack(object value, Type targetType, object parameter, string language)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The string representation of the card count value to be converted back. |
System.Type | targetType | The type of the binding target property. |
System.Object | parameter | An optional parameter to be used in the converter logic. |
System.String | language | The culture to be used in the converter. |
Returns
Type | Description |
---|---|
System.Object | The original card count value. |
Implements
Windows.UI.Xaml.Data.IValueConverter