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

namespace ClosedXML.Excel
{
    public interface IXLHyperlinks: IEnumerable<XLHyperlink>
    {
        void Add(XLHyperlink hyperlink);
        void Delete(XLHyperlink hyperlink);
        void Delete(IXLAddress address);
        
    }
}