Andwho.Windows.Win32.RECT.RECT C# (CSharp) Метод

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

初始化 Andwho.Windows.Win32.RECT 结构的新实例。
public RECT ( Rectangle rect ) : System
rect System.Drawing.Rectangle System.Drawing.Rectangle 对象
Результат System
        public RECT(Rectangle rect)
        {
            this.Left = rect.Left;
            this.Top = rect.Top;
            this.Right = rect.Right;
            this.Bottom = rect.Bottom;
        }

Same methods

RECT::RECT ( int left, int top, int right, int bottom ) : System
RECT