Click or drag to resize

DirectBindingTToBool Method (T, T)

Converts this binding to return a nullable boolean binding

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public DirectBinding<Nullable<bool>> ToBool(
	T trueValue,
	T falseValue
)

Parameters

trueValue
Type: T
Value when the binding is true.
falseValue
Type: T
Value when the binding is false or null.

Return Value

Type: DirectBindingNullableBoolean
Boolean binding.
Remarks
This is useful when converting a binding to be used for a checkbox's Checked binding for example. When the binding's value matches the trueValue, it will return true.
See Also