ManagedWin32.Api.RECT.RECT C# (CSharp) Méthode

RECT() public méthode

public RECT ( int Left, int Top, int Right, int Bottom ) : System.Runtime.InteropServices
Left int
Top int
Right int
Bottom int
Résultat 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