SetPointIncrementSize() private method

private SetPointIncrementSize ( string name, double value ) : void
name string
value double
return void
Ejemplo n.º 1
0
 private void setPointIncrementBox_TextChanged(object sender, EventArgs e)
 {
     try
     {
         controller.SetPointIncrementSize(name, Double.Parse(setPointIncrementBox.Text));
     }
     catch { }
 }