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;
        }