CPF/CPF.ReoGrid/Formula/SheetCellPosition.cs

17 lines
284 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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;
}
}
}