BExplorer.Shell.ShellView.SelectAll C# (CSharp) Method

SelectAll() public method

Selects all items and sets this to focus
public SelectAll ( ) : void
return void
    public void SelectAll() {
      this._IIListView.SetItemState(-1, LVIF.LVIF_STATE, LVIS.LVIS_SELECTED, LVIS.LVIS_SELECTED);
      this.Focus();
    }
ShellView