IXlTableCollection Interface
A read-only collection of tables contained in a worksheet.
Namespace: DevExpress.Export.Xl
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
public interface IXlTableCollection :
IXlReadonlyCollection<IXlTable>,
IEnumerable<IXlTable>,
IEnumerable
Related API Members
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