Class
GroupNameConverter

Represents converter that converts DateTime to string value using the given parameter.

Definition

Namespace:Telerik.UI.Xaml.Controls

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class GroupNameConverter : IValueConverter

Inheritance: objectGroupNameConverter

Implements: IValueConverter

Constructors

GroupNameConverter()

Declaration

cs-api-definition
public GroupNameConverter()

Methods

Convert(object, Type, object, string)

Converts a DateTime to string using the given converter.

Declaration

cs-api-definition
public object Convert(object value, Type targetType, object parameter, string language)

Parameters

value

object

The dateTime value produced by the binding source.

targetType

Type

The type of the binding target property. This parameter is not used.

parameter

object

The converter parameter to use. This parameter is not used.

language

string

Returns

object

A converted string value in specific format.

ConvertBack(object, Type, object, string)

Converts a value.

Declaration

cs-api-definition
public object ConvertBack(object value, Type targetType, object parameter, string language)

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.

language

string

Returns

object

A converted value.

Remarks

This method is not implemented. Throws NotImplementedException.