C# Class ESRI.ArcGIS.Client.Toolkit.FeatureDataFieldValueConverter

Value converter for each field created by the FeatureDataForm that corresponds to a graphic attribute.
Inheritance: IValueConverter
显示文件 Open project: Esri/arcgis-toolkit-sl-wpf

Public Methods

Method Description
Convert ( object value, Type targetType, object parameter, System culture ) : object

Modifies the source data before passing it to the target for display in the UI.

ConvertBack ( object value, Type targetType, object parameter, System culture ) : object

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.

FeatureDataFieldValueConverter ( CodedValueDomain codedValueDomain ) : System

Initializes a new instance of the FeatureDataFieldValueConverter class.

Method Details

Convert() public method

Modifies the source data before passing it to the target for display in the UI.
public Convert ( object value, Type targetType, object parameter, System culture ) : object
value object The source data being passed to the target.
targetType System.Type The of data expected by the target dependency property.
parameter object An optional parameter to be used in the converter logic.
culture System The culture of the conversion.
return object

ConvertBack() public method

Modifies the target data before passing it to the source object. This method is called only in F:System.Windows.Data.BindingMode.TwoWay bindings.
public ConvertBack ( object value, Type targetType, object parameter, System culture ) : object
value object The target data being passed to the source.
targetType System.Type The of data expected by the source object.
parameter object An optional parameter to be used in the converter logic.
culture System The culture of the conversion.
return object

FeatureDataFieldValueConverter() public method

Initializes a new instance of the FeatureDataFieldValueConverter class.
public FeatureDataFieldValueConverter ( CodedValueDomain codedValueDomain ) : System
codedValueDomain CodedValueDomain The coded value domain.
return System