Newer
Older
ClosedXML / ClosedXML / Excel / Drawings / Style / IXLDrawingMargins.cs
@Francois Botha Francois Botha on 30 May 2017 697 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 IXLDrawingMargins
    {
        Boolean Automatic { get; set; }
        Double Left { get; set; }
        Double Right { get; set; }
        Double Top { get; set; }
        Double Bottom { get; set; }
        Double All { set; }

        IXLDrawingStyle SetAutomatic(); IXLDrawingStyle SetAutomatic(Boolean value);
        IXLDrawingStyle SetLeft(Double value);
        IXLDrawingStyle SetRight(Double value);
        IXLDrawingStyle SetTop(Double value);
        IXLDrawingStyle SetBottom(Double value);
        IXLDrawingStyle SetAll(Double value);

    }
}