Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IParameterType Interface

Provides information about a report parameter type.

#Declaration

TypeScript
export interface IParameterType

#Properties

#defaultVal Property

Provides access to the default value for parameters of the current type.

#Declaration

TypeScript
defaultVal: any

#Property Value

Type Description
any

An object that specifies the default value.

#displayValue Property

Provides access to the text displayed to end-users when creating parameters of the current type.

#Declaration

TypeScript
displayValue: string

#Property Value

Type Description
string

A string displayed to end-users.

#specifics Property

Provides access to the specifics of a current parameter type.

#Declaration

TypeScript
specifics: string

#Property Value

Type Description
string

Parameter type specifics.

#Remarks

The specifics property defines which icon to draw for parameters of the current type in the Field List and Expression Editor, and in which cases parameters should be available in the Filter Editor.

The following standard values are available.

  • integer;
  • float;
  • date;
  • string;
  • bool;
  • guid.

#value Property

Provides access to an actual parameter type.

#Declaration

TypeScript
value: string

#Property Value

Type Description
string

A string that specifies the parameter type.

#valueConverter Property

Converts the specified parameter value to the current parameter type.

#Declaration

TypeScript
valueConverter: (val: any) => any

#Property Value

Type Description
(val: any) => any

An action that converts the specified parameter value to the current parameter type.