In my application i am having a dev express data grid. It contains around 2000 rows. In my c# code, i tried to find out the number of rows in the table(i.e the dev express data grid). I used the following code :
Table table = "rx path of table";
IList<Row> rows = table.Find<Row>("*/row");
Now the problem is, it takes around 40 seconds to return me the list of rows as mentioned above. Is there any quicker way to get all the rows?
Also note that, Table.Rows property will not return the rows as the rows are present within the Datapanel inside the table. Kindly help

Regards,
Siva R S