MainForm.BothRadioButton_CheckedChanged C# (CSharp) Method

BothRadioButton_CheckedChanged() public method

public BothRadioButton_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
	void BothRadioButton_CheckedChanged (object sender, EventArgs e)
	{
		if (_bothRadioButton.Checked)
			_richTextBox.ScrollBars = RichTextBoxScrollBars.Both;
	}
MainForm