ShellViewColumnsRemove Method (ShellViewColumn) | 
 
            Removes the first occurrence of a specific object from the 
ICollectionT.
            
 
    Namespace: 
   Jam.Shell
    Assembly:
   ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 6.3.1
Syntaxpublic bool Remove(
	ShellViewColumn item
)
Public Function Remove ( 
	item As ShellViewColumn
) As Boolean
public:
virtual bool Remove(
	ShellViewColumn^ item
) sealed
abstract Remove : 
        item : ShellViewColumn -> bool 
override Remove : 
        item : ShellViewColumn -> bool Parameters
- item
 - Type: Jam.ShellShellViewColumn
The object to remove from the ICollectionT. 
Return Value
Type: 
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)
ExamplesexplorerBrowser1.Columns.Remove(SHCOLUMNID.ShellColumnSize); 
See Also