How can I get Screen resolution In UiPath Studio?

Hello.all!
I want to make parallel flow by screen resolution.
How can I get a screen resolution?

Import class system.windows.forms
Next you can use method: Screen.PrimaryScreen.WorkingArea.Size.ToString for primary monitor
Output will be:
{Width=1280, Height=996}

1 Like

Or method:
Screen.PrimaryScreen.Bounds.ToString
Output:
{X=0,Y=0,Width=1280,Height=1024}

1 Like

Hello All,

I have a case where i have to get the screen resolutions of two monitors and display it to the user. what are the commands that i can use.

Thanks
Manideep Srivatsav