The nearest update will contain following methods:
FlyGridViewPort.GetVertScrollOffset and FlyGridViewPort.GetHorzScrollOffset, you'll can use GetHorzScrollOffset method in HScroll event as following:
[c#]
private void InitFlyGrid(FlyGrid flyGrid)
{
//....
//connect to HScroll event handler
flyGrid.HScroll += new NineRays.Windows.Forms.FlyGrid.NotifyEventHandler(OnHScroll);
}
private void OnHScroll(object sender)
{
FlyGridViewPort port = sender as FlyGridViewPort;
if (port != null)
{
int hposition = port.GetHorzScrollOffset();
//...
}
}