Class MultiBooleanConverter
Converts multiple bool values to a single one by applying AND / OR logical operator.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class MultiBooleanConverter : Object, IMultiValueConverter
Constructors
MultiBooleanConverter()
Declaration
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
public object FalseValue { get; set; }
Property Value
System.Object
|
LogicalOperator
Gets or sets the operator that will compute the single bool.
Declaration
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
public object TrueValue { get; set; }
Property Value
System.Object
|
Methods
Convert(Object[], Type, Object, CultureInfo)
Declaration
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
Parameters
System.Object[]
values
|
System.Type
targetType
|
System.Object
parameter
|
System.Globalization.CultureInfo
culture
|
Returns
System.Object
|
ConvertBack(Object, Type[], Object, CultureInfo)
Declaration
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
Parameters
System.Object
value
|
System.Type[]
targetTypes
|
System.Object
parameter
|
System.Globalization.CultureInfo
culture
|
Returns
System.Object[]
|