Forum Discussion
TanyaYatskovska
Alumni
12 years agoHi,
You can try using the following approach (refer to the control's documentation to learn more about the Bounds property):
var wTreeList = // obtain your tree from the Object Browser
var cell = // obtain the cell to click it
var bounds = cell.Bounds;
wTreeList.Click(bounds.Left + bounds.Width / 2,
bounds.Top + bounds.Height / 2);
If this doesn't help, can you create a sample app and post it here so we can try to test it?