MainForm.HorizontalRadioButton_CheckedChanged C# (CSharp) Method

HorizontalRadioButton_CheckedChanged() public method

public HorizontalRadioButton_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
	void HorizontalRadioButton_CheckedChanged (object sender, EventArgs e)
	{
		if (_horizontalRadioButton.Checked)
			_richTextBox.ScrollBars = RichTextBoxScrollBars.Horizontal;
	}
MainForm