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

SetIconSize() public method

Sets the search folder icon size. The default settings are based on the FolderTypeID which is set by the SearchFolder::SetFolderTypeID method.
public SetIconSize ( int value ) : void
value int
return void
        public void SetIconSize(int value)
        {
            HResult hr = NativeSearchFolderItemFactory.SetIconSize(value);
            if (hr != HResult.S_OK) throw new Exception(hr.ToString());
        }