Skip to main content

ParameterInfo.Type Property

Gets or sets the expected parameter type.

Namespace: DevExpress.Spreadsheet.Functions

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public ParameterType Type { get; set; }

Property Value

Type Description
ParameterType

A ParameterType enumeration member specifying the type of a parameter.

Available values:

Name Description
Reference

The parameter is a reference to a cell, range or defined name.

Value

The parameter is a single value of any type.

Array

Parameter is an array (the function is used in array formula).

Any

Any kind of parameter is allowed.

Remarks

Use the Type property to explicitly specify the parameter type. If the parameter being passed to the function is of a different type, a dialog containing the warning message is displayed.

See Also