Interface ICollectionBase
Represents base interface for collections.
Inherited Members
Namespace: Syncfusion.Office
Assembly: Syncfusion.Compression.NET.dll
Syntax
public interface ICollectionBase : IOfficeMathEntity
Properties
Count
Gets the number of items in collection.
Declaration
int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The integer represents the count of the items. |
Methods
Clear()
Removes all items from the collection.
Declaration
void Clear()
Remove(IOfficeMathEntity)
Removes the item from the collection.
Declaration
void Remove(IOfficeMathEntity item)
Parameters
Type | Name | Description |
---|---|---|
IOfficeMathEntity | item | Represents a IOfficeMathEntity to remove. |