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

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);
}
}