12 lines
218 B
C#
12 lines
218 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Main
|
|
{
|
|
internal interface IScrollableWorksheetContainer
|
|
{
|
|
void RaiseWorksheetScrolledEvent(Worksheet worksheet, float x, float y);
|
|
|
|
bool ShowScrollEndSpacing { get; }
|
|
}
|
|
}
|