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

IFunction.Parameters Property

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

Namespace: DevExpress.Spreadsheet.Functions

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

NuGet Package: DevExpress.Spreadsheet.Core

#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