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

namespace ClosedXML.Excel
{
    public interface IXLCustomProperties: IEnumerable<IXLCustomProperty>
    {
        void Add(IXLCustomProperty customProperty);
        void Add<T>(String name, T value);
        void Delete(String name);
        IXLCustomProperty CustomProperty(String name);
        
    }
}