using System; namespace CPF.ReoGrid.Formula { internal class SheetCellPosition { public Worksheet Worksheet { get; set; } public CellPosition Position { get; set; } public static implicit operator CellPosition(SheetCellPosition pos) { return pos.Position; } } }