Newer
Older
ClosedXML / ClosedXML / Excel / Drawings / IXLDrawingPosition.cs
@Francois Botha Francois Botha on 30 May 2017 540 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 IXLDrawingPosition
    {
        Int32 Column { get; set; }
        IXLDrawingPosition SetColumn(Int32 column);
        Double ColumnOffset { get; set; }
        IXLDrawingPosition SetColumnOffset(Double columnOffset);

        Int32 Row { get; set; }
        IXLDrawingPosition SetRow(Int32 row);
        Double RowOffset { get; set; }
        IXLDrawingPosition SetRowOffset(Double rowOffset);
    }
}