ZForge.Controls.TreeViewAdv.Tree.NodeControls.NodeIntegerTextBox.CreateTextBox C# (CSharp) Method

CreateTextBox() protected method

protected CreateTextBox ( ) : TextBox
return System.Windows.Forms.TextBox
        protected override TextBox CreateTextBox()
        {
            NumericTextBox textBox = new NumericTextBox();
            textBox.AllowDecimalSeperator = false;
            textBox.AllowNegativeSign = AllowNegativeSign;
            return textBox;
        }