Gets the getter that knows how to retrieve value from the specified property of the given data object.

Namespace: Dapfor.Wpf.Data
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
IGetter GetGetter(
	IDataField field
)
Visual Basic
Function GetGetter ( 
	field As IDataField
) As IGetter
Visual C++
IGetter^ GetGetter(
	IDataField^ field
)
F#
abstract GetGetter : 
        field : IDataField -> IGetter 

Parameters

field
Type: Dapfor.Wpf.Data..::..IDataField
The field.

Return Value

Type: IGetter
IGetter instance, if the acceleration is available. Otherwise null.

Remarks

If the acceleration is not available, the IDataField tries get value by the default way (for example, reflection).

See Also