AirTabInputServer.Win32InputClient.GetScreenSize C# (CSharp) Method

GetScreenSize() public method

public GetScreenSize ( int &width, int &height ) : void
width int
height int
return void
        public void GetScreenSize(out int width, out int height)
        {
            width = GetSystemMetrics(SystemMetric.SM_CXSCREEN);
            height = GetSystemMetrics(SystemMetric.SM_CYSCREEN);
        }