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

namespace ClosedXML.Excel
{
    public enum XLCustomPropertyType { Text, Number, Date, Boolean}
    public interface IXLCustomProperty
    {
        String Name { get; set; }
        XLCustomPropertyType Type { get; }
        Object Value { get; set; }
        T GetValue<T>();
    }
}