ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.Focus C# (CSharp) Method

Focus() public method

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