Back to Devexpress

ParameterType Enum

corelibraries-devexpress-dot-xtrareports-dot-parameters-2182e8e2.md

latest2.5 KB
Original Source

ParameterType Enum

Specifies the type of the value that should be passed to a parameter.

Namespace : DevExpress.XtraReports.Parameters

Assembly : DevExpress.Printing.v25.2.Core.dll

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
[ResourceFinder(typeof(ResFinder))]
public enum ParameterType
vb
<ResourceFinder(GetType(ResFinder))>
Public Enum ParameterType

Members

NameDescription
String

The parameter returns a string value, corresponding to the String type.

| | DateTime |

The parameter returns a date-time value, corresponding to the DateTime type.

| | Int32 |

The parameter returns an integer value, corresponding to the Int32 type.

| | Int64 |

The parameter returns a 64 -bit signed integer value, corresponding to the Int64 type.

| | Float |

The parameter returns a floating-point value, corresponding to the Single type.

| | Double |

The parameter returns a double-precision floating-point number, corresponding to the Double type.

| | Decimal |

The parameter returns a decimal value, corresponding to the Decimal type.

| | Boolean |

The parameter returns a Boolean value, corresponding to the Boolean type.

|

Remarks

An object of the ParameterType type is returned by the Parameter.ParameterType property, which is now obsolete and retained only for backward compatibility. Instead, use the Parameter.Type property.

See Also

Type

DevExpress.XtraReports.Parameters Namespace