Click or drag to resize

ShellViewColumnsRemove(ShellViewColumn) Method

Removes the first occurrence of a specific object from the ICollectionT.

Namespace: Jam.Shell
Assembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
Syntax
public bool Remove(
	ShellViewColumn item
)

Parameters

item  ShellViewColumn
The object to remove from the ICollectionT.

Return Value

Boolean
true if item was successfully removed from the ICollectionT; otherwise, false. This method also returns false if item is not found in the original ICollectionT.

Implements

ICollectionTRemove(T)
Example
C#
explorerBrowser1.Columns.Remove(SHCOLUMNID.ShellColumnSize); //Removes the Size column. If it doesn't exist it is skipped.
See Also