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!

IEditorHost.DropDownControl

Launches a drop down window that contains the control. The best attempt will be made to give the control it's current size, so the control should set it's desired size before each invocation of this method. The dropDownDone method should be invoked when the control is done. Finally, the dropDown may be prematurely exited through user action, in which case the control will be made invisible.

[Visual Basic]
Sub DropDownControl( _
   ByVal ctl As Control _
)
[C#]
void DropDownControl(
   Control ctl
);
[C++]
void DropDownControl(
   Control* ctl
) = 0;
[JScript]
function DropDownControl(
   ctl : Control
);

Parameters

ctl
Control to be displayed inside a drop down.

See Also

IEditorHost Interface | IEditorHost Members | System.WinForms.ComponentModel Namespace | dropDownDone