Beyond_Beyaan.BBSingleLineTextBox.Select C# (CSharp) Метод

Select() публичный Метод

public Select ( ) : void
Результат void
        public void Select()
        {
            //Sets the text field to be selected and editable
            if (isReadOnly)
            {
                return;
            }
            blink = true;
            isSelected = true;
        }