21 lines
425 B
C#
21 lines
425 B
C#
![]() |
using System;
|
|||
|
using CPF.ReoGrid.Main;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Views
|
|||
|
{
|
|||
|
internal interface IScrollableViewportController
|
|||
|
{
|
|||
|
void HorizontalScroll(float value);
|
|||
|
|
|||
|
void VerticalScroll(float value);
|
|||
|
|
|||
|
void ScrollViews(ScrollDirection dir, float x, float y);
|
|||
|
|
|||
|
void ScrollOffsetViews(ScrollDirection dir, float x, float y);
|
|||
|
|
|||
|
void ScrollToRange(RangePosition range, CellPosition pos);
|
|||
|
|
|||
|
void SynchronizeScrollBar();
|
|||
|
}
|
|||
|
}
|