Skip to main content
A newer version of this page is available. .

IFunction.Parameters Property

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

Namespace: DevExpress.Spreadsheet.Functions

Assembly: DevExpress.Spreadsheet.v17.2.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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Parameters property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also