Newer
Older
ClosedXML / ClosedXML / Excel / Tables / IXLTables.cs
@Francois Botha Francois Botha on 30 May 2017 586 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLTables: IEnumerable<IXLTable>
    {
        void Add(IXLTable table);
        IXLTable Table(Int32 index);
        IXLTable Table(String name);

        /// <summary>
        /// Clears the contents of these tables.
        /// </summary>
        /// <param name="clearOptions">Specify what you want to clear.</param>
        IXLTables Clear(XLClearOptions clearOptions = XLClearOptions.ContentsAndFormats);

        void Remove(Int32 index);
        void Remove(String name);
    }
}