ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.Focus C# (CSharp) Méthode

Focus() public méthode

Sets input focus to the control.
public Focus ( ) : bool
Résultat bool
        public new bool Focus()
        {
            if (ListBox != null)
                return ListBox.Focus();
            else
                return false;
        }
KryptonCheckedListBox