Page 1 of 1

how to select propertypage control

Posted: Fri Nov 10, 2006 7:04 am
by nitin
Hi,

I can select form control with function to find it but
If i want to find PropertyGrid control then there is no
function to find it.
Is any other way to find it and retrieve?

Thanx,
Nitin.

Posted: Fri Nov 10, 2006 7:37 am
by nitin
Hi,

I can do this like :
Control propertyGrid = form.FindControlName("propertyGrid1");

Posted: Sun Nov 12, 2006 6:28 pm
by webops
In the next version (V1.0.0) you can also do the following:

Code: Select all

PropertyGrid propertyGrid = form.FindPropertyGrid("propertyGrid1");
...
Jenö Herget
Ranorex Team