ManagedWin32.Api.RECT.RECT C# (CSharp) Метод

RECT() публичный Метод

public RECT ( int Left, int Top, int Right, int Bottom ) : System.Runtime.InteropServices
Left int
Top int
Right int
Bottom int
Результат System.Runtime.InteropServices
        public RECT(int Left, int Top, int Right, int Bottom)
        {
            this.Left = Left;
            this.Top = Top;
            this.Right = Right;
            this.Bottom = Bottom;
        }
RECT