Enum
ArgumentInterpretation

Defines how a function argument value should be interpreted during evaluation: used as-is, treated as error, ignored, or converted to a default value.

Definition

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

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public enum ArgumentInterpretation

Fields

ConvertToDefault

Convert the argument to its default value for the expected type.

Declaration

cs-api-definition
ConvertToDefault = 3

Field Value

ArgumentInterpretation

Ignore

Ignore this argument in the calculation.

Declaration

cs-api-definition
Ignore = 2

Field Value

ArgumentInterpretation

TreatAsError

Treat the argument as an error value.

Declaration

cs-api-definition
TreatAsError = 1

Field Value

ArgumentInterpretation

UseAsIs

Use the argument value without conversion.

Declaration

cs-api-definition
UseAsIs = 0

Field Value

ArgumentInterpretation