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.
Hi Dmitry,
I`m not sure what is your final goals, but maybe you could used InitializeRow event (this event fired for each rows) and fill your own Cell Collection.
Hi,
I need to retrieve the data from column with one property usage. I would not like to look over each cell or row. Is it possible?
As far as I know there are not such kind of property. One possible option could be if you are using InitializeRows event or loop through the rows.