Table of Contents

Method Show

Namespace
Alternet.Scripter.Debugger.UI.Evaluation.CodeCompletion
Assembly
Alternet.Scripter.Debugger.UI.v9.dll

Show(Control)

Shows the pop-up window below the specified control.

public void Show(Control control)

Parameters

control Control

The control below which the pop-up will be shown.

Remarks

When there is no space below the specified control, the pop-up control is shown above it.

Exceptions

ArgumentNullException

control is

null
.

Show(Rectangle)

Shows the pop-up window below the specified area.

public void Show(Rectangle area)

Parameters

area Rectangle

The area of desktop below which the pop-up will be shown.

Remarks

When there is no space below specified area, the pop-up control is shown above it.

Show(Control, Rectangle)

Shows the pop-up window below the specified area of the specified control.

public void Show(Control control, Rectangle area)

Parameters

control Control

The control used to compute screen location of specified area.

area Rectangle

The area of control below which the pop-up will be shown.

Remarks

When there is no space below specified area, the pop-up control is shown above it.

Exceptions

ArgumentNullException

control is

null
.