24 lines
496 B
C#
24 lines
496 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Main
|
|
{
|
|
internal interface IScrollableControlAdapter
|
|
{
|
|
float ScrollBarHorizontalMaximum { get; set; }
|
|
|
|
float ScrollBarHorizontalMinimum { get; set; }
|
|
|
|
float ScrollBarHorizontalValue { get; set; }
|
|
|
|
float ScrollBarHorizontalLargeChange { get; set; }
|
|
|
|
float ScrollBarVerticalMaximum { get; set; }
|
|
|
|
float ScrollBarVerticalMinimum { get; set; }
|
|
|
|
float ScrollBarVerticalValue { get; set; }
|
|
|
|
float ScrollBarVerticalLargeChange { get; set; }
|
|
}
|
|
}
|