16 lines
337 B
C#
16 lines
337 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
public interface IAutoFillSectionEntry
|
|||
|
{
|
|||
|
object Value { get; }
|
|||
|
|
|||
|
bool IsSequenceOf(IAutoFillSectionEntry otherEntry);
|
|||
|
|
|||
|
object GetIterationValue(object baseValue, object incrementPerIteration, int iteration);
|
|||
|
|
|||
|
object GetIncrementPerIteration(object baseValue, int numberOfEntries);
|
|||
|
}
|
|||
|
}
|