I've got a GridView that shows up in my Locals window. The path I take is:
This -->
DataGrid_AA -->
Controls -->
Results View -->
[0] -->
Controls -->
Results View -->
[0] -->
Cells -->
Results View -->
[2] --> X
How would I go about referencing "X" in code? I tried:
string x = this.DataGrid_AA.Controls[0].Controls[0].Cells[2].Text;
but it tells me "Control does not contain a definition for Cells". Any ideas?