Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IFunction.Parameters Property

Returns an array containing information on parameters that can be passed to the function.

Namespace: DevExpress.Spreadsheet.Functions

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

ParameterInfo[] Parameters { get; }

Property Value

Type Description
ParameterInfo[]

An array of ParameterInfo type objects.

Remarks

The Parameters property specifies what parameters can be passed to the function, their type and attributes. If a parameter is specified as optional (using the ParameterAttributes.Optional attribute), it can be omitted. Otherwise, all specified parameters are required, and a missing parameter results in the display of a warning message box.

See Also