MainForm.HorizontalRadioButton_CheckedChanged C# (CSharp) 메소드

HorizontalRadioButton_CheckedChanged() 공개 메소드

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