IJamShellColumnCollectionItem Property (SHCOLUMNID) |
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax JamShellColumnHeader this[
SHCOLUMNID pShellColumnId
] { get; }
ReadOnly Default Property Item (
pShellColumnId As SHCOLUMNID
) As JamShellColumnHeader
Get
property JamShellColumnHeader^ default[SHCOLUMNID pShellColumnId] {
JamShellColumnHeader^ get (SHCOLUMNID pShellColumnId);
}
abstract Item : JamShellColumnHeader with get
Parameters
- pShellColumnId
- Type: Jam.ShellSHCOLUMNID
A SHCOLUMNID identifying the shell column.
Property Value
Type:
JamShellColumnHeader
The
JamShellColumnHeader.
Return Value
Type:
JamShellColumnHeaderThe
JamShellColumnHeader with the specified SHCOLUMNID. Null if the SHCOLUMNId does not exist.
Examples
foreach (JamShellColumnHeader lHeader in shellListView1.Columns)
{
}
if (shellListView1.Columns[SHCOLUMNID.ShellColumnAttributes] != null)
{
}
if (shellListView1.Columns.GetColumnByShellIndex(0) == null)
{
}
See Also