IExplorerNodeTypeExtension.Initialize(IExplorerNodeType) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes the node extension.
public:
void Initialize(Microsoft::VisualStudio::SharePoint::Explorer::IExplorerNodeType ^ nodeType);
public void Initialize (Microsoft.VisualStudio.SharePoint.Explorer.IExplorerNodeType nodeType);
abstract member Initialize : Microsoft.VisualStudio.SharePoint.Explorer.IExplorerNodeType -> unit
Public Sub Initialize (nodeType As IExplorerNodeType)
Parameters
- nodeType
- IExplorerNodeType
The node type that is being extended.
Remarks
You can handle events of the nodeType
parameter to add features to the node. For example, you can handle the following events:
NodeChildrenRequested: Handle this event to add new child nodes to the node. For more information, see How to: Add a Custom SharePoint Node to Server Explorer.
NodeMenuItemsRequested: Handle this event to add a custom shortcut menu item to the node.
NodePropertiesRequested: Handle this event to add custom properties to the node. The properties appear in the Properties window when the node is selected.
This method is called once for each IExplorerNodeTypeExtension implementation.