BExplorer.Shell.ShellSearchFolder.SetVisibleColumns C# (CSharp) Method

SetVisibleColumns() public method

Creates a new column list whose columns are all visible, given an array of PropertyKey structures. The default is based on FolderTypeID.
This property may not work correctly with the ExplorerBrowser control.
public SetVisibleColumns ( PROPERTYKEY value ) : void
value BExplorer.Shell.Interop.PROPERTYKEY
return void
        public void SetVisibleColumns(PROPERTYKEY[] value)
        {
            HResult hr = NativeSearchFolderItemFactory.SetVisibleColumns(value == null ? 0 : (uint)value.Length, value);
            if (hr != HResult.S_OK) throw Marshal.GetExceptionForHR((int)hr);
        }