Beyond_Beyaan.BBSingleLineTextBox.Select C# (CSharp) Method

Select() public method

public Select ( ) : void
return void
        public void Select()
        {
            //Sets the text field to be selected and editable
            if (isReadOnly)
            {
                return;
            }
            blink = true;
            isSelected = true;
        }