Newer
Older
ClosedXML / ClosedXML / Excel / Drawings / Style / IXLDrawingSize.cs
@Francois Botha Francois Botha on 30 May 2017 472 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 IXLDrawingSize
    {
        Boolean AutomaticSize { get; set; }
        Double Height { get; set; }
        Double Width { get; set; }

        IXLDrawingStyle SetAutomaticSize(); IXLDrawingStyle SetAutomaticSize(Boolean value);
        IXLDrawingStyle SetHeight(Double value);
        IXLDrawingStyle SetWidth(Double value);

    }
}