Interface IWTableCollection
Represents a collection of IWTable.
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public interface IWTableCollection : IEntityCollectionBase, ICollectionBase, IEnumerable
Properties
Item[Int32]
Gets the IWTable at the specified index.
Declaration
IWTable this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type |
---|
IWTable |
Methods
Add(IWTable)
Adds a table to end of text body.
Declaration
int Add(IWTable table)
Parameters
Type | Name | Description |
---|---|---|
IWTable | table | The IWTable object to be added. |
Returns
Type | Description |
---|---|
System.Int32 | The zero-based index of the table. |
Contains(IWTable)
Determines whether the IWTableCollection contains a specific table.
Declaration
bool Contains(IWTable table)
Parameters
Type | Name | Description |
---|---|---|
IWTable | table | The IWTable object to be found. |
Returns
Type | Description |
---|---|
System.Boolean | True if table is found, otherwise |
IndexOf(IWTable)
Returns the index of a table in the collection.
Declaration
int IndexOf(IWTable table)
Parameters
Type | Name | Description |
---|---|---|
IWTable | table | The IWTable to which the index to be find. |
Returns
Type | Description |
---|---|
System.Int32 | The zero-based index of the table. |