17 lines
284 B
C#
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;
|
|
}
|
|
}
|
|
}
|