Skip to main content
All docs
V26.1
  • DelegateConverterFactory.CreateMultiValueConverter(Func<Object[], Object>, Func<Object, Object[]>) Method

    Creates an instance of object that implements the IMultiValueConverter interface.

    Namespace: DevExpress.Mvvm.UI

    Assembly: DevExpress.Xpf.Core.v26.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public static IMultiValueConverter CreateMultiValueConverter(
        Func<object[], object> convert,
        Func<object, object[]> convertBack = null
    )

    Parameters

    Name Type Description
    convert Func<Object[], Object>

    A delegate method that converts a value.

    Optional Parameters

    Name Type Default Description
    convertBack Func<Object, Object[]> null

    A delegate method that converts a value back.

    Returns

    Type Description
    IMultiValueConverter

    An instance of object that implements the IMultiValueConverter interface.

    See Also