AD
Administrator
Syncfusion Team
July 20, 2004 12:54 PM UTC
The arrow points to the position in the CurrencyManager object for the bindingcontext of the grid. So code like this would be one way to set it.
CurrencyManager cm = (CurrencyManager)this.grid.BindingContext[this.grid.DataSource, this.grid.DataMember];
cm.Position = someZeroBasedValue;
Another way is to set the grid.Binder.CurrentPosition property.
DL
Doug Lind
July 20, 2004 05:48 PM UTC
Thanks Clay,
It worked well!
>The arrow points to the position in the CurrencyManager object for the bindingcontext of the grid. So code like this would be one way to set it.
>
>CurrencyManager cm = (CurrencyManager)this.grid.BindingContext[this.grid.DataSource, this.grid.DataMember];
>cm.Position = someZeroBasedValue;
>
>
>Another way is to set the grid.Binder.CurrentPosition property.