ArgumentType
Enum
Categorizes function arguments by their expected data type for validation and documentation purposes.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public enum ArgumentType
Fields
Argument accepts any value type.
C#
Any = 0
Argument expects an array or range of values.
C#
Array = 5
Argument expects a boolean (TRUE/FALSE) value.
C#
Logical = 1
Argument expects a numeric value.
C#
Number = 2
Argument expects a cell or range reference.
C#
Reference = 4
Argument expects a text string value.
C#
Text = 3