IndirectBindingTGetValue Method |
Gets the value from the specified object using this binding
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public T GetValue(
Object dataItem
)
Public Function GetValue (
dataItem As Object
) As T
abstract GetValue :
dataItem : Object -> 'T
override GetValue :
dataItem : Object -> 'T
Parameters
- dataItem
- Type: SystemObject
object to retrieve the value from
Return Value
Type:
Tvalue from the specified object
Implements
IIndirectBindingTGetValue(Object)Remarks
When values are needed from this binding, this method will be called.
Implementors of this binding would implement logic in
InternalGetValue(Object)See Also