CPF/CPF.ReoGrid/Formula/SheetCellPosition.cs
2024-06-24 10:15:59 +08:00

17 lines
284 B
C#

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;
}
}
}