Updates the bound target object's value
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public virtual void Update(
BindingUpdateMode mode = BindingUpdateMode.Destination
)
Public Overridable Sub Update (
Optional mode As BindingUpdateMode = BindingUpdateMode.Destination
)
abstract Update :
?mode : BindingUpdateMode
(* Defaults:
let _mode = defaultArg mode BindingUpdateMode.Destination
*)
-> unit
override Update :
?mode : BindingUpdateMode
(* Defaults:
let _mode = defaultArg mode BindingUpdateMode.Destination
*)
-> unit
Parameters
- mode (Optional)
- Type: Eto.FormsBindingUpdateMode
Direction of the update
Implements
IBindingUpdate(BindingUpdateMode)Remarks
Typically the source would be your custom class and the destination would be a UI control, but this is not
always the case.
See Also