Click or drag to resize

ShellViewColumnsShow Method

Adds the column at its default position.

Namespace:  Jam.Shell
Assembly:  ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.0
Syntax
public bool Show(
	SHCOLUMNID pShellColumnId
)

Parameters

pShellColumnId
Type: Jam.ShellSHCOLUMNID
A SHCOLUMNID that serves as identifier of the column.

Return Value

Type: Boolean
True if the column was added, inserted or moved, false if it's not available or could not be inserted.
Examples
C#
if (IsMyMusic())
{
    //"Show" shows the column at its default position, but you can determine the position by using "Insert" or "Add"
    explorerBrowser1.Columns.Show(SHCOLUMNID.ShellColumnMusicTitlenumber);
    explorerBrowser1.Columns.Show(SHCOLUMNID.ShellColumnSummaryTitle);
    explorerBrowser1.Columns.Show(SHCOLUMNID.ShellColumnMusicArtist);
    explorerBrowser1.Columns.Show(SHCOLUMNID.ShellColumnMusicAlbum);
    explorerBrowser1.Columns.Show(SHCOLUMNID.ShellColumnMusicYear);
    explorerBrowser1.Columns[explorerBrowser1.Columns.Count - 1].Caption = "Custom title";
}
See Also