14 lines
173 B
C#
14 lines
173 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Core
|
|||
|
{
|
|||
|
internal interface ISheetAddress
|
|||
|
{
|
|||
|
string ToAddress();
|
|||
|
|
|||
|
string ToRelativeAddress();
|
|||
|
|
|||
|
string ToAbsoluteAddress();
|
|||
|
}
|
|||
|
}
|