ComponentFactory.Krypton.Toolkit.KryptonListBox.GetSelected C# (CSharp) Method

GetSelected() public method

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.
return bool
        public bool GetSelected(int index)
        {
            return _listBox.GetSelected(index);
        }
KryptonListBox