Skip to content

Go To Dialog

Steve Towner edited this page May 15, 2016 · 4 revisions

Go To Dialog

Go To Line Dialog

Usage

The following creates and shows a Go To dialog. Once the user enters a line number, the referenced ScintillaNET control will go to that location, the form will close. The Go To instance is no longer required.

	using ScintillaNET_FindReplaceDialog;

	private void GotoButton_Click(object sender, EventArgs e)
	{
		GoTo MyGoTo = new GoTo(scintilla1);
		MyGoTo.ShowGoToDialog();
	}
Clone this wiki locally