ARCed.Scripting.ScriptEditorForm.buttonReplace_Click C# (CSharp) 메소드

buttonReplace_Click() 개인적인 메소드

private buttonReplace_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
		private void buttonReplace_Click(object sender, EventArgs e)
		{
			this._scintilla.Commands.Execute(BindableCommand.ShowReplace);
			Point p = this._scintilla.PointToClient(MousePosition);
			if (this._scintilla.Bounds.Contains(p))
				this._scintilla.FindReplace.Window.Location = p;
		}