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!

IOverlayService.PushOverlay

Pushes the given control on top of the overlay list. This is a "push" operation, meaning that it forces this control to the top of the existing overlay list.

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

Parameters

control
The control to push to the top of the overlay list. An exception will be thrown if this control is already in the list.

See Also

IOverlayService Interface | IOverlayService Members | System.WinForms.Design Namespace