Interface IAddInFunctions
Represents a collection of custom Add In functions.
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public interface IAddInFunctions : IParentApplication
Properties
Count
Returns number of elements in the collection.
Declaration
int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Returns a single AddInFunction object from a AddInFunction collection based on index.
Declaration
IAddInFunction this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
IAddInFunction |
Methods
Add(String)
Adds new local function to the collection.
Declaration
int Add(string strFunctionName)
Parameters
Type | Name | Description |
---|---|---|
System.String | strFunctionName | Function to add. |
Returns
Type | Description |
---|---|
System.Int32 | Index of the added function. |