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

14 lines
173 B
C#

using System;
namespace CPF.ReoGrid.Core
{
internal interface ISheetAddress
{
string ToAddress();
string ToRelativeAddress();
string ToAbsoluteAddress();
}
}