Interface IOfficeMathBaseCollection
Represents an interface for function collection.
Inherited Members
Namespace: Syncfusion.Office
Assembly: Syncfusion.Compression.Portable.dll
Syntax
public interface IOfficeMathBaseCollection : ICollectionBase, IOfficeMathEntityProperties
Item[Int32]
Represents the specified item in the collection.
Declaration
IOfficeMathFunctionBase this[int index] { get; }Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | index | 
Property Value
| Type | 
|---|
| IOfficeMathFunctionBase | 
Methods
Add(MathFunctionType)
Adds IOfficeMathFunctionBase instance to the collection.
Declaration
IOfficeMathFunctionBase Add(MathFunctionType mathFunctionType)Parameters
| Type | Name | Description | 
|---|---|---|
| MathFunctionType | mathFunctionType | 
Returns
| Type | Description | 
|---|---|
| IOfficeMathFunctionBase | Returns the newly added IOfficeMathFunctionBase. | 
Add(Int32, MathFunctionType)
Adds IOfficeMathFunctionBase instance to the collection at specified index.
Declaration
IOfficeMathFunctionBase Add(int index, MathFunctionType mathFunctionType)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | index | The Index, where to add the IOfficeMathFunctionBase instance. | 
| MathFunctionType | mathFunctionType | Represents the type of function to add. | 
Returns
| Type | Description | 
|---|---|
| IOfficeMathFunctionBase | Returns the newly added IOfficeMathFunctionBase. |