ClassMultiBooleanConverter
Class
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:
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.
LogicalOperator
Gets or sets the operator that will compute the single bool.
Declaration
cs-api-definition
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 LogicalOperator.
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
parameter
culture
Returns