enveetee
2014-11-29T09:26:52Z
Is there a event which is raised when the display area of the grid is full - just before the right hand scroll bar is displayed


Thanks

Igor/10Tec
2014-12-01T10:29:47Z
Can you provide us with more details when you need that? And attach an accompanying screenshot if possible?

The first event that can help you I've thought of is ScrollBarVisibilityChanged. Does it work in your case?

If not, you can also get some technical info from the iGrid.Sys() function and implement kinda event you need based on the corresponding values.
enveetee
2014-12-01T13:29:47Z
Hi Igor

I am designing a 'system event' form. Each event is a row in the grid. I only want to show the last 10 or so rows so I don't need the scroll bar. When I add a row, I need to know if it is going to appear off the bottom of the grid and the scroll bar is displayed.

I have used .sys to calculate the size of the row area and the height of the rows. As soon as the number or rows * row height is larger, I delete the last row

Works fine

thanks