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

TdxSpreadSheetFunctionResultKind Type

Enumerates types of results that the implementation routines of registered Microsoft Excel-compatible function signatures can return.

#Declaration

#Referenced Class

Type
TdxSpreadSheetFunctionResultKind

#Remarks

Options include:

Value Description
frkValue The function can return either a single value or an array. If the function is an array formula, it returns an array as a result. Otherwise, it returns a single value. For instance, the ABS function can return either an array or an individual value.
frkArray The function can return only an array as a result. For instance, the MMULT function multiplies two arrays and returns the product array as a result.
frkNonArrayValue The function has no array version and can return only a single value. For instance, the AVERAGE function returns only a single average of any number of parameters.
frkParamValue The function returns one of its parameters depending on a certain condition. For instance, the IF function returns the second parameter value if the logical test succeeds; otherwise – returns the third parameter.

The function signature’s ResultKind field references the TdxSpreadSheetFunctionResultKind type.

See Also