Forum Discussion
irina_lukina
14 years agoSuper Contributor
Hi Vikas,
You can use the following code:
Sys.Process("Orders").WPFObject("HwndSource: MainForm").WPFObject("MainForm").WPFObject("gridMain").WPFObject("OrdersView").Items.Item(2).Card
Here, the index in the Item(Index) method specifies the row number, the Card parameter is the name of the needed column. So, in general, you need to use the following syntax:
Sys.Process("Orders").WPFObject("HwndSource: MainForm").WPFObject("MainForm").WPFObject("gridMain").WPFObject("OrdersView").Items.Item(Row_number).Column_Name
Does this help?