Newer
Older
ClosedXML / ClosedXML / Excel / Drawings / Style / IXLDrawingStyle.cs
@Francois Botha Francois Botha on 30 May 2017 522 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public interface IXLDrawingStyle
    {
        //IXLDrawingFont Font { get; }
        IXLDrawingAlignment Alignment { get; }
        IXLDrawingColorsAndLines ColorsAndLines { get; }
        IXLDrawingSize Size { get; }
        IXLDrawingProtection Protection { get; }
        IXLDrawingProperties Properties { get; }
        IXLDrawingMargins Margins { get; }
        IXLDrawingWeb Web { get; }
    }
}