Back to Devexpress

Parameter.ParameterType Property

corelibraries-devexpress-dot-xtrareports-dot-parameters-dot-parameter-219a39c2.md

latest3.2 KB
Original Source

Parameter.ParameterType Property

OBSOLETE

The ParameterType property is now obsolete. Use the Type property instead.

For internal use. Specifies the type of the value associated with the parameter.

Namespace : DevExpress.XtraReports.Parameters

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

NuGet Package : DevExpress.Printing.Core

Declaration

csharp
[Browsable(false)]
[Obsolete("The ParameterType property is now obsolete. Use the Type property instead.")]
public ParameterType ParameterType { get; set; }
vb
<Obsolete("The ParameterType property is now obsolete. Use the Type property instead.")>
<Browsable(False)>
Public Property ParameterType As ParameterType

Property Value

TypeDescription
ParameterType

A ParameterType enumeration value.

|

Available values:

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

The ParameterType property is now obsolete, and is retained only for backward compatibility. Instead, use the Parameter.Type property.

See Also

Type

Parameter Class

Parameter Members

DevExpress.XtraReports.Parameters Namespace