// performs the mouse moving from [200, 250] to [500, 250]
instance.ActiveTab.MouseMove(200, 250, 500, 250);
// preforms the mouse moving from [500, 250] to [500, 125]
// and rise left mouse click in the last location
instance.ActiveTab.MouseMove(500, 250, 500, 125, true);
Source...