Hi All,
Does anybody know, how to read excell cell comment valu from ranorex cell.
I can read comment value directly from excel as: cell.Comment.Shape.AlternativeText.
Or can I get this by the ranorex spy tool.
Thanks,
Srdjan
Read comment value from Excel Ranorex.Cell
-
- Posts: 4
- Joined: Mon Apr 02, 2012 10:43 am
- Support Team
- Site Admin
- Posts: 12145
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Houston, Texas, USA
- Contact:
Re: Read comment value from Excel Ranorex.Cell
Hi,
by using the ExcelRange adapter instead of the Cell adapter you can use ExcelRangeObject of you cell:
Tobias
Ranorex Team
by using the ExcelRange adapter instead of the Cell adapter you can use ExcelRangeObject of you cell:
ExcelRange my_cell = "<RanoreXPath of your cell>"; Report.Info(my_cell.GetExcelRangeObject().Comment.Shape.AlternativeText.ToString());Regards,
Tobias
Ranorex Team
-
- Posts: 4
- Joined: Mon Apr 02, 2012 10:43 am
Re: Read comment value from Excel Ranorex.Cell
Perfect,
Thanks
Thanks