CellsHelper.AddAddInFunction

CellsHelper.AddAddInFunction method

Add addin function.

[Obsolete("Use WorksheetCollection.RegisterAddInFunction() methods instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static void AddAddInFunction(string function, int minCountOfParameters, 
    int maxCountOfParameters, ParameterType[] paramersType, ParameterType functionValueType)
ParameterTypeDescription
functionStringThe function name.
minCountOfParametersInt32Minimum number of parameters this function requires
maxCountOfParametersInt32Maximum number of parameters this function allows.
paramersTypeParameterType[]The excepted parameters type of the function
functionValueTypeParameterTypeThe function value type.

Remarks

NOTE: This member is now obsolete. Instead, please use WorksheetCollection.RegisterAddInFunction() methods. This method will be removed 12 months later since January 2022. Aspose apologizes for any inconvenience you may have experienced.

See Also