how to select propertypage control

Ask general questions here.
nitin
Posts: 8
Joined: Thu Nov 09, 2006 5:56 am
Contact:

how to select propertypage control

Post by nitin » Fri Nov 10, 2006 7:04 am

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.

nitin
Posts: 8
Joined: Thu Nov 09, 2006 5:56 am
Contact:

Post by nitin » Fri Nov 10, 2006 7:37 am

Hi,

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

webops
Site Admin
Site Admin
Posts: 349
Joined: Wed Jul 05, 2006 7:44 pm

Post by webops » Sun Nov 12, 2006 6:28 pm

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