IJamShellColumnCollection Interface |
Interface representing a ColumnCollection. This interface is returned by
Columns Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic interface IJamShellColumnCollection : ICollection,
IEnumerable
Public Interface IJamShellColumnCollection
Inherits ICollection, IEnumerable
public interface class IJamShellColumnCollection : ICollection,
IEnumerable
type IJamShellColumnCollection =
interface
interface ICollection
interface IEnumerable
endThe IJamShellColumnCollection type exposes the following members.
Properties
Methods
Example
This example re-initializes the columns displayed for
MyMusic in the
CreatedColumns event.
private void ShellListView1_CreatedColumns(object sender, EventArgs e)
{
if (shellListView1.SpecialFolder == ShellFolder.MyMusic)
{
shellListView1.BeginUpdate();
shellListView1.Columns.Clear();
shellListView1.Columns.Show(SHCOLUMNID.ShellColumnSummaryTitle);
shellListView1.Columns.Show(SHCOLUMNID.ShellColumnMusicAlbum);
shellListView1.Columns.Show(SHCOLUMNID.ShellColumnMusicArtist);
shellListView1.Columns.Add(SHCOLUMNID.ShellColumnMusicGenre);
shellListView1.EndUpdate();
}
}
See Also