BindableExtensionsInverse Method (DirectBindingBoolean) |
Gets a binding with the inverse of the specified nullable boolean value binding.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static DirectBinding<bool> Inverse(
this DirectBinding<bool> binding
)
<ExtensionAttribute>
Public Shared Function Inverse (
binding As DirectBinding(Of Boolean)
) As DirectBinding(Of Boolean)
[<ExtensionAttribute>]
static member Inverse :
binding : DirectBinding<bool> -> DirectBinding<bool>
Parameters
- binding
- Type: Eto.FormsDirectBindingBoolean
Binding to invert.
Return Value
Type:
DirectBindingBooleanA new binding to the inverse value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
DirectBindingBoolean. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also