ShellViewColumnsSetColumns Method |
Replaces the currently shown columns by the columns passed.
Namespace: Jam.ShellAssembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
Syntaxpublic bool SetColumns(
IList<SHCOLUMNID> pShellColumnIds
)
Public Function SetColumns (
pShellColumnIds As IList(Of SHCOLUMNID)
) As Boolean
public:
bool SetColumns(
IList<SHCOLUMNID>^ pShellColumnIds
)
member SetColumns :
pShellColumnIds : IList<SHCOLUMNID> -> bool
Parameters
- pShellColumnIds IListSHCOLUMNID
- A list of SHCOLUMNIDs that serve as identifier of the columns.
Return Value
Booleantrue if the operation succeeded, false otherwise
Remarks
Example
explorerBrowser1.Columns.SetColumns(new List<SHCOLUMNID>()
{
SHCOLUMNID.ShellColumnName,
SHCOLUMNID.ShellColumnSize,
SHCOLUMNID.ShellColumnElementType
});
See Also