New to Telerik ReportingStart a free 30-day trial

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)
Parameters:namestring

Specifies the name of the field for the mapping.

aliasstring

Specifies 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)
Parameters:propertyNamestring

Events

PropertyChanged

PropertyChangedEventHandler

C#
public event PropertyChangedEventHandler PropertyChanged