Hello All,
Could you please advise if there is a way to get entire Column data from the grid?
Thanks,
Dmitry
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
Hello,
Thank you for this, but it is time consuming approach in case you have too many rows.
It would be preferable to get collection of cells at once, but as far as I understood it is impossible.