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

ParameterAttributes Enum

Lists parameter attributes.

Namespace: DevExpress.Spreadsheet.Functions

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public enum ParameterAttributes

#Members

Name Description
Required

The parameter is mandatory. A missing parameter results in a user warning dialog.

Optional

The parameter is not required. If it is missing, the function still compiles and evaluates. Note that optional parameters should come after all required parameters.

OptionalUnlimited

Any number of parameters which are not required. Note that the total number of parameters should not exceed 255 and the optional unlimited parameter should be the final parameter.

#Related API Members

The following properties accept/return ParameterAttributes values:

#Remarks

Specify the parameter attribute for the ParameterInfo objects in the IFunction.Parameters array to create a function signature. A function signature provides parameter validation when a function is evaluated.

See Also