Newer
Older
ClosedXML / ClosedXML / Excel / CustomProperties / IXLCustomProperties.cs
@Amir Amir on 9 Sep 2016 374 bytes Project hierarchy cleanup
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);
        
    }
}