Class
MultiBooleanConverter

Converts multiple bool values to a single one by applying AND / OR logical operator.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class MultiBooleanConverter : IMultiValueConverter

Inheritance: objectMultiBooleanConverter

Implements: IMultiValueConverter

Constructors

MultiBooleanConverter()

Declaration

cs-api-definition
public MultiBooleanConverter()

Properties

FalseValue

Gets or sets the value that is returned by the Convert() method when the incoming values do not meet the condition determined by the provided LogicalOperator.

Declaration

cs-api-definition
public object FalseValue { get; set; }

Property Value

object

LogicalOperator

Gets or sets the operator that will compute the single bool.

Declaration

cs-api-definition
public LogicalOperator LogicalOperator { get; set; }

Property Value

LogicalOperator

TrueValue

Gets or sets the value that is returned by the Convert() method when the incoming values meet the condition determined by the provided LogicalOperator.

Declaration

cs-api-definition
public object TrueValue { get; set; }

Property Value

object

Methods

Convert(object[], Type, object, CultureInfo)

Declaration

cs-api-definition
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)

Parameters

values

object[]

targetType

Type

parameter

object

culture

CultureInfo

Returns

object

ConvertBack(object, Type[], object, CultureInfo)

Declaration

cs-api-definition
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)

Parameters

value

object

targetTypes

Type[]

parameter

object

culture

CultureInfo

Returns

object[]