Forum Discussion
chriscc
3 years agoContributor
Hi NicoH,
I am not 100% certain about your grid control's properties, but a lot of cell objects will have a Value property that you can access. So, your code might work if you add the Value property, like this:
Log.Message ("Cell (0, " + Col + ") value: " + Grid.Cells(0,0).Value.asString);
If the Value property returns an index or an Id that maps to the displayed value (if the cell uses a drop down list to set the value, for example) , then you might need to use the FormattedValue property, like this:
Log.Message ("Cell (0, " + Col + ") value: " + Grid.Cells(0,0).FormattedValue.asString);
I hope this helps.
Regards,
Related Content
- 5 years ago
- 4 months ago
- 7 years ago
- 2 years ago
Recent Discussions
- 34 minutes ago
- 2 days ago