Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
885
Selected cell row/column values
posted

Hi,

I need to get currently changed cell.row.column(AnyIndex).text, any simple way to do this?

Thanks!

 

 

 

 

Parents
No Data
Reply
  • 535
    Suggested Answer
    posted

    GRID.ActiveCell.Value.ToString() will give you the value of the active cell.

    Alternatively you can put in an event handler for UpdateCellEvent and get the value there to get real time notification of a change.

    Peter

Children