OZWForm.ValuePanelShort.ValueShortButtonSet_Click C# (CSharp) Method

ValueShortButtonSet_Click() private method

Handles the Click event of the ValueShortButtonSet control.
private ValueShortButtonSet_Click ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The instance containing the event data.
return void
        private void ValueShortButtonSet_Click(object sender, EventArgs e)
        {
            if (SendChanges)
            {
                Int16 value = Convert.ToInt16(ValueShortNumericUpDown.Value);
                Manager.SetValue(ValueID, value);
            }
        }