Skip to main content
A newer version of this page is available. .

IXlTableCollection Interface

A read-only collection of tables contained in a worksheet.

Namespace: DevExpress.Export.Xl

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public interface IXlTableCollection :
    IXlReadonlyCollection<IXlTable>,
    IEnumerable<IXlTable>,
    IEnumerable

The following members return IXlTableCollection objects:

Remarks

The IXlTableCollection collection contains IXlTable objects and is available using the IXlSheet.Tables property.

When you generate a new table in a worksheet using the IXlRow.BeginTable and IXlRow.EndTable paired methods, the table is automatically added to the IXlTableCollection collection and can be accessed by its name or zero-based index in the collection.

See Also