Class DataMapping
Represents individual mapping between a field from the InformationLayer ItemsSource and the member that should be mapped to it.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class DataMapping : Object
Constructors
DataMapping()
DataMapping(String, DataMember)
Initializes a new instance of the DataMapping class.
Declaration
public DataMapping(string fieldName, DataMember valueMember)
Parameters
System.String
fieldName
Field name in the context of the ItemsSource the property is bound to. |
DataMember
valueMember
The DataMember member that should be mapped to the data field from the ItemsSource. |
Properties
FieldName
Gets or sets a field name in the context of the datasource the information layer is bound to.
Declaration
public string FieldName { get; set; }
Property Value
System.String
|
ValueMember
The DataMember member that should be mapped to the data field from the ItemsSource.
Declaration
public DataMember ValueMember { get; set; }
Property Value
DataMember
|