ARCed.Scripting.ScriptEditorForm.buttonIncrementalSearch_Click C# (CSharp) Метод

buttonIncrementalSearch_Click() приватный Метод

private buttonIncrementalSearch_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
		private void buttonIncrementalSearch_Click(object sender, EventArgs e)
		{
			this._scintilla.Commands.Execute(BindableCommand.IncrementalSearch);
			Point p = this._scintilla.PointToClient(MousePosition);
			if (this._scintilla.Bounds.Contains(p))
				this._scintilla.FindReplace.IncrementalSearcher.Location = p;
		}