CalculatedField Constructors
A calculated field that allows you to apply complex expressions to data fields obtained from the data source.| Name | Parameters | Description |
|---|---|---|
| CalculatedField() | none | Initializes a new instance of the CalculatedField class with default settings. |
| CalculatedField(String, String, CalculatedFieldType) | expression, name, dataType | Initializes a new instance of the CalculatedField class. |
| CalculatedField(String, String, String, CalculatedFieldType) | dataMember, expression, name, dataType | Initializes a new instance of the CalculatedField class. |
| CalculatedField(String, String, String) | dataMember, expression, name | Initializes a new instance of the CalculatedField class. |
| CalculatedField(String, String) | expression, name | Initializes a new instance of the CalculatedField class. |
| CalculatedField(String) | expression | Initializes a new instance of the CalculatedField class. |
See Also