IJamShellColumnCollectionGetColumnByShellIndex Method |
Namespace: Jam.Shell
//iterating all columns foreach (JamShellColumnHeader lHeader in shellListView1.Columns) { } //checking if a shellListView contains the "Attributes" column. if (shellListView1.Columns[SHCOLUMNID.ShellColumnAttributes] != null) { } //checking if the shellListView contains the "Name" column (usually the one with ShellIndex = 0) if (shellListView1.Columns.GetColumnByShellIndex(0) == null) { }