CairoDesktop.Interop.NativeMethods.RECT.RECT C# (CSharp) Метод

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

public RECT ( int left_, int top_, int right_, int bottom_ ) : System
left_ int
top_ int
right_ int
bottom_ int
Результат System
            public RECT(int left_, int top_, int right_, int bottom_)
            {
                left = left_;
                top = top_;
                right = right_;
                bottom = bottom_;
            }