Enum
SimpleType

Represents type options.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
public enum SimpleType

Fields

Boolean

Values of type bool are accepted.

Declaration

cs-api-definition
Boolean = 0

Field Value

SimpleType

DateTime

Values of type DateTime are accepted.

Declaration

cs-api-definition
DateTime = 1

Field Value

SimpleType

Decimal

Values of type float or double are accepted. Internally the values are converted to decimal.

Declaration

cs-api-definition
Decimal = 4

Field Value

SimpleType

Float

Values of type float or double are accepted. Internally the values are converted to double.

Declaration

cs-api-definition
Float = 3

Field Value

SimpleType

Integer

Values of type short, int, or long are accepted. Internally the values are converted to long.

Declaration

cs-api-definition
Integer = 2

Field Value

SimpleType

String

Values of type string are accepted.

Declaration

cs-api-definition
String = 5

Field Value

SimpleType