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!

ToolBar ButtonDropDown Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the ButtonDropDown event.

[Visual Basic]
Private Sub ToolBarName_ButtonDropDown( _
   ByVal sender As Object, _
   ByVal e As ToolBarButtonClickEventArgs _
)
[C#]
private void ToolBarName_ButtonDropDown(
   object sender,
   ToolBarButtonClickEventArgs e
);
[C++]
private: void ToolBarName_ButtonDropDown(
   Object* sender,
   ToolBarButtonClickEventArgs* e
);
[JScript]
private ToolBarName_ButtonDropDown(
   sender : Object,
   e : ToolBarButtonClickEventArgs
);

Parameters

sender
The source of the event.
e
A ToolBarButtonClickEventArgs that contains the event data.

See Also

ToolBar Class | ToolBar MembersTopic | System.WinForms Namespace