Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / FunctionAttributes Enumeration


In This Topic
    FunctionAttributes Enumeration
    In This Topic
    Represents evaluation attributes of the custom function.
    Syntax
    'Declaration
     
    
    Public Enum FunctionAttributes 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As FunctionAttributes
    public enum FunctionAttributes : System.Enum 
    Members
    MemberDescription
    ArrayIndicates that the function will return array result.
    AsyncThe function contains asynchronous function
    BooleanIndicates that the function will return boolean result.
    ConstantThe function represents a constant value.
    DateIndicates that the function will return date result.
    ErrorIndicates that the function will return CalcError result.
    NumberIndicates that the function will return numeric result.
    ReferenceIndicates that the function will return reference result.
    SingleCellIndicates 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.
    SpillableThe function is able to return array.
    TextIndicates that the function will return string result.
    TimeIndicates that the function will return timespan result.
    VariantIndicates that the function will return variant result.
    VisualThe data visualization function visualize cell value.
    VolatileThe function is volatile.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.CalcEngine.FunctionAttributes

    See Also