using System; using System.Collections.Generic; using System.Text; using QiHe.CodeLib; namespace HH.WMS.Utils.ExcelLibrary.SpreadSheet { public class Picture { public CellAnchor TopLeftCorner; public CellAnchor BottomRightCorner; public Image Image; public Pair CellPos { get { return new Pair(TopLeftCorner.RowIndex, TopLeftCorner.ColIndex); } } } }