[]
        
(Showing Draft Content)

GrapeCity.CalcEngine.FunctionAttributes

FunctionAttributes Enum

Represents evaluation attributes of the custom function.

Namespace: GrapeCity.CalcEngine
Assembly: GrapeCity.CalcEngine.dll
Syntax
[Flags]
public enum FunctionAttributes : long
<Flags>
Public Enum FunctionAttributes As Long

Fields

Name Description
Array

Indicates that the function will return array result.

Async

The function contains asynchronous function

Boolean

Indicates that the function will return boolean result.

Constant

The function represents a constant value.

Date

Indicates that the function will return date result.

Error

Indicates that the function will return CalcError result.

Number

Indicates that the function will return numeric result.

Reference

Indicates that the function will return reference result.

SingleCell

Indicates whether the function process array formula as single-cell formulas. Some functions like SUM, COUNT... will process array formula as single-cell formulas. Others will process array formula as multi-cell formulas.

Spillable

The function is able to return array.

Text

Indicates that the function will return string result.

Time

Indicates that the function will return timespan result.

Variant

Indicates that the function will return variant result.

Visual

The data visualization function visualize cell value.

Volatile

The function is volatile.