MainForm.RefreshSelection C# (CSharp) 메소드

RefreshSelection() 공개 메소드

public RefreshSelection ( ) : void
리턴 void
	void RefreshSelection ()
	{
		_selectionStartValue.Text = _comboBox.SelectionStart.ToString (CultureInfo.InvariantCulture);
		_selectionLengthValue.Text = _comboBox.SelectionLength.ToString (CultureInfo.InvariantCulture);
	}
MainForm