CPF/CPF.ReoGrid/IAutoFillSectionEntry.cs

16 lines
337 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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);
}
}