SendRectangle() public method

public SendRectangle ( int X, int Y, int Width, int Height ) : void
X int
Y int
Width int
Height int
return void
Example #1
0
 private void HandleMouseUp(object sender, MouseEventArgs e)
 {
     instanceRef.SendRectangle(CurrentTopLeft.X, CurrentTopLeft.Y, CurrentBottomRight.X - CurrentTopLeft.X, CurrentBottomRight.Y - CurrentTopLeft.Y);
     this.Close();
 }