Updates the binding from the source to the destination
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void Update(
BindingUpdateMode mode = BindingUpdateMode.Source
)
Sub Update (
Optional mode As BindingUpdateMode = BindingUpdateMode.Source
)
abstract Update :
?mode : BindingUpdateMode
(* Defaults:
let _mode = defaultArg mode BindingUpdateMode.Source
*)
-> unit
Parameters
- mode (Optional)
- Type: Eto.FormsBindingUpdateMode
Direction of the update
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