Rhino.Tools.Shell.ConsoleTextArea.Select C# (CSharp) Method

Select() public method

public Select ( int start, int end ) : void
start int
end int
return void
		public override void Select(int start, int end)
		{
			RequestFocus();
			base.Select(start, end);
		}