ShellViewColumnsRemove(ShellViewColumn) Method |
Removes the first occurrence of a specific object from the
ICollectionT.
Namespace: Jam.ShellAssembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
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 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)
ExampleexplorerBrowser1.Columns.Remove(SHCOLUMNID.ShellColumnSize);
See Also