GetROProperty Method is used to retrieve the run time values of the Test object's Property from the application under Test.
For Example :
hWnd=Browser(”browser_name”).GetROProperty(”hwnd”)
Return value of the Property "hwnd".
SetToProperty : This Method is used to set the Test object Property's value at run session without affecting value in the Object Repository.
For Example :
Browser(Browser_Name).Page(Page_Name).webedit(name).SetToProperty "value" 123
GetToProperty method is used to retreive the Test Object property's value available in the Object Repository.
a=Browser(Browser_Name).Page(Page_Name).webedit(name).GetToProperty("value")
msgbox(a)