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 Logical
Declaration
public object FalseValue { get; set; }
Property Value
System.
|
LogicalOperator
Gets or sets the operator that will compute the single bool.
Declaration
public LogicalOperator LogicalOperator { get; set; }
Property Value
TrueValue
Gets or sets the value that is returned by the Convert() method when the incoming values
meet the condition determined by the provided Logical
Declaration
public object TrueValue { get; set; }
Property Value
System.
|
Methods
Convert(Object[], Type, Object, CultureInfo)
Declaration
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
Parameters
System.
|
System.
|
System.
|
System.
|
Returns
System.
|
ConvertBack(Object, Type[], Object, CultureInfo)
Declaration
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
Parameters
System.
|
System.
|
System.
|
System.
|
Returns
System.
|