Class CalculatedField
Represents an user-defined field in a DataSource.
Inheritance
System.Object
CalculatedField
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class CalculatedField : INotifyPropertyChanged
Constructors
CalculatedField()
Declaration
public CalculatedField()
CalculatedField(String)
Declaration
public CalculatedField(string name)
Parameters
System.String
name
|
CalculatedField(String, Type)
Declaration
public CalculatedField(string name, Type dataType)
Parameters
System.String
name
|
System.Type
dataType
|
CalculatedField(String, Type, String)
Declaration
public CalculatedField(string name, Type dataType, string expression)
Parameters
System.String
name
|
System.Type
dataType
|
System.String
expression
|
Properties
DataType
Gets or sets the data type of the CalculatedField
Declaration
public Type DataType { get; set; }
Property Value
System.Type
|
Expression
Gets or sets the expression of the CalculatedField
Declaration
public string Expression { get; set; }
Property Value
System.String
|
Name
Gets or sets the name of the CalculatedField
Declaration
public string Name { get; set; }
Property Value
System.String
|
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|