Remove Method (ContextMenus)
In This Topic
Removes a context menu from this session document
Syntax
expression.Remove( _
ByVal As String _
) As Boolean
where
expression is a variable that represents a
ContextMenus Object
Parameters
- name
- The descriptive name of the menu to remove
Return Value
True if the remove was successful, false if the menu name could not be found or an error occurred
Exceptions
Exception | Description |
ArgumentNullException | If the name passed is null |
ArgumentException | If the name passed corresponds to the default menu, which cannot be deleted.
This can be represented by an empty string, or the ContextMenu.DefaultMenuName constant |
InvalidOperationException | If the ContextMenus object is not available or in an error state |
See Also