corelibraries-devexpress-dot-export-dot-xl-c38f6c7f.md
A read-only collection of tables contained in a worksheet.
Namespace : DevExpress.Export.Xl
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public interface IXlTableCollection :
IXlReadonlyCollection<IXlTable>,
IEnumerable<IXlTable>,
IEnumerable
Public Interface IXlTableCollection
Inherits IXlReadonlyCollection(Of IXlTable),
IEnumerable(Of IXlTable),
IEnumerable
The following members return IXlTableCollection objects:
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