IIndirectBindingT Interface |
Base interface for an indirect binding.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic interface IIndirectBinding<T> : IBinding
Public Interface IIndirectBinding(Of T)
Inherits IBinding
type IIndirectBinding<'T> =
interface
interface IBinding
endType Parameters
- T
[Missing <typeparam name="T"/> documentation for "T:Eto.Forms.IIndirectBinding`1"]
The IIndirectBindingT type exposes the following members.
Methods|
| Name | Description |
|---|
 | GetValue |
Gets the value from the specified object using this binding
|
 | SetValue |
Sets the specified value to an object using this binding
|
Top
Remarks
An indirect binding is passed the data item to get/set values on the object.
This is used for things like the
Grid,
ListBox, etc when
binding to values for each item in the data store.
See Also