Class DataColumn
Represents a data column definition.
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class DataColumn : INotifyPropertyChanged
Constructors
DataColumn()
DataColumn(String, SimpleType)
Creates a new instance of DataColumn.
Declaration
public DataColumn(string name, SimpleType columnType)
Parameters
System.String
name
The name of the column. This name should be used later when referring a field from this column in expressions. |
SimpleType
columnType
The type of the column. |
Properties
Name
Gets or sets the name of the field definition. Used to access the field in expressions.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Remarks
Field names must be unique in the context of a single report. The name must be a valid identifier - may contain only digits (0-9), letters (a-z, A-Z), and underscore sign (_). Must begin with a letter or underscore.
Type
Gets or sets the type of the field.
Declaration
public SimpleType Type { get; set; }
Property Value
SimpleType
|
Remarks
Determines the type of the values. Acceptable values for each type are listed in SimpleType. The default parameter type is String.
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|