Atspi.BoundingBox.BoundingBox C# (CSharp) Method

BoundingBox() public method

public BoundingBox ( int x, int y, int width, int height ) : System
x int
y int
width int
height int
return System
        public BoundingBox(int x, int y, int width, int height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }
BoundingBox