Alsing.Windows.Forms.SyntaxBox.GotoLineForm.GotoLineForm C# (CSharp) Method

GotoLineForm() public method

Creates a GotoLineForm that will be assigned to a specific Owner control.
public GotoLineForm ( EditViewControl Owner, int RowCount ) : System
Owner EditViewControl The SyntaxBox that will use the GotoLineForm
RowCount int The number of lines in the owner control
return System
        public GotoLineForm(EditViewControl Owner, int RowCount)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            lblLines.Text = "Line number (1-" + RowCount.ToString(CultureInfo.InvariantCulture) + "):";
            mOwner = Owner;
        }

Same methods

GotoLineForm::GotoLineForm ( ) : System