ShellViewColumnsSetColumns Method |
Replaces the currently shown columns by the columns passed.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public 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
- Type: System.Collections.GenericIListSHCOLUMNID
A list of SHCOLUMNIDs that serve as identifier of the columns.
Return Value
Type:
Booleantrue if the operation succeeded, false otherwise
Remarks Examples
explorerBrowser1.Columns.SetColumns(new List<SHCOLUMNID>()
{
SHCOLUMNID.ShellColumnName,
SHCOLUMNID.ShellColumnSize,
SHCOLUMNID.ShellColumnElementType
});
See Also