DataFieldMapping
Class
Represents a mapping between a field from a data source and its corresponding short alias used for data binding in expressions.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
C#
[TypeConverter(typeof(DataFieldMappingConverter))]
public class DataFieldMapping
Inheritance: objectDataFieldMapping
Constructors
Initializes a new instance of the DataFieldMapping class.
C#
public DataFieldMapping()
Initializes a new instance of the DataFieldMapping class.
C#
public DataFieldMapping(string name, string alias)
Specifies the name of the field for the mapping.
aliasstringSpecifies the alias of the field for the mapping.
Properties
Alias
string
Gets or sets the alias of the field from the mapping.
C#
public string Alias { get; set; }
Name
string
Gets or sets the name of the field from the mapping.
C#
public string Name { get; set; }
Methods
C#
protected void NotifyPropertyChanged(string propertyName)
Events
PropertyChanged
PropertyChangedEventHandler
C#
public event PropertyChangedEventHandler PropertyChanged