NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IToolboxUser.ToolPicked

This will be called when the user double-clicks on a toolbox item. The document designer should create a component for the given tool. Only tools that are enabled in the toolbox will be passed to this method.

[Visual Basic]
Sub ToolPicked( _
   ByVal tool As ToolboxItem _
)
[C#]
void ToolPicked(
   ToolboxItem tool
);
[C++]
void ToolPicked(
   ToolboxItem* tool
) = 0;
[JScript]
function ToolPicked(
   tool : ToolboxItem
);

Parameters

tool
The tool to create.

See Also

IToolboxUser Interface | IToolboxUser Members | System.Drawing.Design Namespace