Click or drag to resize

IndirectBindingTToBool Method (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 IndirectBinding<Nullable<bool>> ToBool(
	T trueValue
)

Parameters

trueValue
Type: T
Value when the binding is true.

Return Value

Type: IndirectBindingNullableBoolean
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