ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.GetSelected C# (CSharp) 메소드

GetSelected() 공개 메소드

Returns a value indicating whether the specified item is selected.
public GetSelected ( int index ) : bool
index int The zero-based index of the item that determines whether it is selected.
리턴 bool
        public bool GetSelected(int index)
        {
            return _listBox.GetSelected(index);
        }
KryptonCheckedListBox