17 lines
288 B
C#
17 lines
288 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Formula
|
|||
|
{
|
|||
|
internal class SheetRangePosition
|
|||
|
{
|
|||
|
public Worksheet Worksheet { get; set; }
|
|||
|
|
|||
|
public RangePosition Position { get; set; }
|
|||
|
|
|||
|
public static implicit operator RangePosition(SheetRangePosition pos)
|
|||
|
{
|
|||
|
return pos.Position;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|