PixelFarm.Agg.RectInt.RectInt C# (CSharp) Method

RectInt() public method

public RectInt ( int left, int bottom, int right, int top ) : System
left int
bottom int
right int
top int
return System
        public RectInt(int left, int bottom, int right, int top)
        {
            Left = left;
            Bottom = bottom;
            Right = right;
            Top = top;
        }