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
175
How to get cell data in the range
posted

Hello All,

Could you please advise if there is a way to get entire Column data from the grid?

Thanks,

Dmitry

Parents
No Data
Reply
  • 53790
    posted

    Hello Dmitry,

    Maybe one possible approach to get Cell value, could be if you are using "GetCellData". For example:

    // Sample with GroupByRows

    SwfWindow("Form1").SwfTable("ultraGrid1").ActivateRow "0;0;1"
    SwfWindow("Form1").SwfTable("ultraGrid1").SelectRow "0;0;1"
    SwfWindow("Form1").SwfTable("ultraGrid1").GetCellData "0;0;1", "Item_3"

    // Sample with Rows

    SwfWindow("Form1").SwfTable("ultraGrid1").ActivateRow "2"
    SwfWindow("Form1").SwfTable("ultraGrid1").SelectRow "2"
    SwfWindow("Form1").SwfTable("ultraGrid1").GetCellData "2", "0"

    Please let me know if you have any questions.

    Regards

Children