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

DisableGroups() public method

Disables/Removes grouping
public DisableGroups ( ) : void
return void
    public void DisableGroups() {
      if (!this.IsGroupsEnabled) return;
      this.Groups.Clear();
      this._IIListView.RemoveAllGroups();
      this._IIListView.EnableGroupView(0);
      this._IIListView.SetOwnerDataCallback(IntPtr.Zero);
      this.LastGroupCollumn = null;
      this.LastGroupOrder = SortOrder.None;
      this.IsGroupsEnabled = false;
    }
ShellView