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:
C#
public enum ArgumentInterpretation
Fields
Convert the argument to its default value for the expected type.
C#
ConvertToDefault = 3
Ignore this argument in the calculation.
C#
Ignore = 2
Treat the argument as an error value.
C#
TreatAsError = 1
Use the argument value without conversion.
C#
UseAsIs = 0