MainForm.RefreshSelection C# (CSharp) Method

RefreshSelection() public method

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