Class
ResourcesSeparatorConverter

Represents converter that converts collection of ResourceItem into a formatted string value.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

cs-api-definition
public class ResourcesSeparatorConverter : IValueConverter

Inheritance: objectResourcesSeparatorConverter

Implements: IValueConverter

Constructors

ResourcesSeparatorConverter()

Declaration

cs-api-definition
public ResourcesSeparatorConverter()

Methods

Convert(object, Type, object, CultureInfo)

Modifies the source data before passing it to the target for display in the UI.

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

The source data being passed to the target.

targetType

Type

The Type of data expected by the target dependency property.

parameter

object

An optional parameter to be used in the converter logic.

culture

CultureInfo

The culture of the conversion.

Returns

object

String that represents the display name of each resource with a comma-separator.

ConvertBack(object, Type, object, CultureInfo)

Converts a value.

Declaration

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)

Parameters

value

object

The value that is produced by the binding target.

targetType

Type

The type to convert to.

parameter

object

The converter parameter to use.

culture

CultureInfo

The culture to use in the converter.

Returns

object

A converted value.

Remarks

This method is not implemented. Throws NotImplementedException.