In ranorex spy I can get size of a found element
for example

I need those values for some use
Is it possible to use those values in user code?
If it 's possible, can someone kindly tell me how to get those values in user code?
Thank you very much
Ranorex.Button btnStart = "/button[@text='Start']"; Report.Info( string.Format( "Win-Startbutton width: '{0}' height: '{1}'", btnStart.ScreenRectangle.Size.Width, btnStart.ScreenRectangle.Size.Height ) );Output:
Code: Select all
Win-Startbutton width: '54' height: '40'