New to Telerik Document ProcessingStart a free 30-day trial

Defines how array arguments should be interpreted: use the first element only, use all elements, or ignore all elements.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public enum ArrayArgumentInterpretation

Fields

Ignore all elements of the array.

C#
IgnoreAllElements = 2

Use all elements of the array in the calculation.

C#
UseAllElements = 1

Use only the first element of the array.

C#
UseFirstElement = 0