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.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
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