Class ArrayBehaviourConfig
This class should be used to configure how arrays/ranges are treated as parameters to functions that can return a dynamic array.
Inheritance
Inherited Members
Namespace: OfficeOpenXml.FormulaParsing.Excel.Functions
Assembly: EPPlus.dll
Syntax
public class ArrayBehaviourConfig
Properties
ArrayArgInterval
Indicates that every x-th argument can be an array.
Declaration
public int ArrayArgInterval { get; set; }
Property Value
Type | Description |
---|---|
System. |
IgnoreNumberOfArgsFromStart
Use this property in combination with Array
Declaration
public int IgnoreNumberOfArgsFromStart { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
CanBeArrayArg(Int32)
Returns true if the 0-based argIx
occurs in the Set
Declaration
public bool CanBeArrayArg(int argIx)
Parameters
Type | Name | Description |
---|---|---|
System. |
argIx | argument index (0-based) |
Returns
Type | Description |
---|---|
System. |
SetArrayParameterIndexes(Int32[])
This method sets indexes of arguments that can be an array.
Declaration
public void SetArrayParameterIndexes(params int[] indexes)
Parameters
Type | Name | Description |
---|---|---|
System. |
indexes | A list of integers that specifies the 0-based index of arguments that can be an array. |