IJamShellColumnCollectionGetColumnByShellIndex Method |
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
SyntaxJamShellColumnHeader GetColumnByShellIndex(
int pShellIndex
)
Function GetColumnByShellIndex (
pShellIndex As Integer
) As JamShellColumnHeader
JamShellColumnHeader^ GetColumnByShellIndex(
int pShellIndex
)
abstract GetColumnByShellIndex :
pShellIndex : int -> JamShellColumnHeader Parameters
- pShellIndex Int32
- The shell index of the column.
Return Value
JamShellColumnHeaderThe
JamShellColumnHeader with the specified shell index.
Example
foreach (JamShellColumnHeader lHeader in shellListView1.Columns)
{
}
if (shellListView1.Columns[SHCOLUMNID.ShellColumnAttributes] != null)
{
}
if (shellListView1.Columns.GetColumnByShellIndex(0) == null)
{
}
See Also