Class SideToCoordinateConverter
This class converts side to coordinate for transforming window in side panel.
Inheritance
System.Object
SideToCoordinateConverter
Implements
System.Windows.Data.IMultiValueConverter
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class SideToCoordinateConverter : Object, IMultiValueConverter
Constructors
SideToCoordinateConverter()
Declaration
public SideToCoordinateConverter()
Methods
Convert(Object[], Type, Object, CultureInfo)
Converts side to coordinate for transforming window in side panel.
Declaration
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object[] | values | Values to be converted. |
| System.Type | targetType | Type, the value is to be converted to. |
| System.Object | parameter | Does not matter. |
| System.Globalization.CultureInfo | culture | Currently used culture. Not used here. |
Returns
| Type | Description |
|---|---|
| System.Object | Converted value. |
ConvertBack(Object, Type[], Object, CultureInfo)
This method does nothing.
Declaration
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | value | The value that the binding target produces. |
| System.Type[] | targetTypes | The array of types to convert to. The array length indicates the number and types of values that are suggested for the method to return. |
| System.Object | parameter | The converter parameter to use. |
| System.Globalization.CultureInfo | culture | The culture to use in the converter. |
Returns
| Type | Description |
|---|---|
| System.Object[] | An array of values that have been converted from the target value back to the source values. |
Implements
System.Windows.Data.IMultiValueConverter