- I would like scrolling of the grid to be one column at a time rather than in fractions. It is similar to what Excel does. So one would not see a complete column starting at the the left-edge of the grid
- When the app start, the grid should show a certain special column (say XX) as the first column even thoug there are other other columns to its left like this
A B C XX D E F
It would come up with left most visible column as XX
XX D E F ( while columns further left like A B and C can be accessed by scrolling left)
I asked
When the app start, the grid should show a certain special column (say XX) as the first column even thoug there are other other columns to its left like this
In response you said
Mike Saltzman"]You could trap for changes in your scrollbar and then using the methods on the ActiveColScrollRegion in the grid to scroll a particular column into view on the left.
Position seems to be method I am looking for on the ColScrollRegion for making XX the first column in the example above.
- Do you agree that Position would do the job?
- What is the Position value relative the left edge of the XX cell?
- How do I find the co-ordinates of left edge of the cell XX?
Thanks!
Hi,
There's nothing like this built-in to the grid. I guess you could get rid of the grid's ScrollBar and then place your own under the grid and handle the scrolling that way. You could trap for changes in your scrollbar and then using the methods on the ActiveColScrollRegion in the grid to scroll a particular column into view on the left.