Newer
Older
ClosedXML / ClosedXML / Excel / XLOutline.cs
@Amir Amir on 9 Sep 2016 495 bytes Project hierarchy cleanup

namespace ClosedXML.Excel
{
    internal class XLOutline:IXLOutline
    {
        public XLOutline(IXLOutline outline)
        {
            if (outline != null)
            {
                SummaryHLocation = outline.SummaryHLocation;
                SummaryVLocation = outline.SummaryVLocation;
            }
        }
        public XLOutlineSummaryVLocation SummaryVLocation { get; set; }
        public XLOutlineSummaryHLocation SummaryHLocation { get; set; }
    }
}