Alsing.Windows.Forms.SyntaxBox.EditViewControl.ShowGotoLine C# (CSharp) Method

ShowGotoLine() public method

Displays the GotoLine dialog.
public ShowGotoLine ( ) : void
return void
        public void ShowGotoLine()
        {
            var go = new GotoLineForm(this, Document.Count);
            //			if (this.TopLevelControl is Form)
            //				go.Owner=(Form)this.TopLevelControl;

            go.ShowDialog(TopLevelControl);
        }