//Button for start special movement (movement depends on which radio box (manual or segment) is checked):
        private void button13_Click(object sender, EventArgs e)
        {
            #region "agilent setup"
            //Agilent VNA (surfaceScan) code:
            PNA_init();
            #endregion

            movementType.move(movementVariables);
            cur_abs_pos(abs_position);
        }
 public void move(MovementType a)
 {
     a.move();
 }