In This Article

IOverlayPane Interface

Provides the base requirements for an overlay pane that can appear over an IEditorView.

public interface IOverlayPane : IKeyedObject

Properties

CloseCommand

The ICommand that closes the pane.

ICommand CloseCommand { get; }

Property Value

ICommand

InstanceKind

The OverlayPaneInstanceKind that indicates how many instances of the pane are permitted across all views.

OverlayPaneInstanceKind InstanceKind { get; }

Property Value

OverlayPaneInstanceKind:

The default value is Single.

VisualElement

The Control that is used to visually render the pane.

Control VisualElement { get; }

Property Value

Control

Methods

Activate()

Activates the pane, called when the pane is already open to perform tasks like moving focus into itself.

void Activate()

Close()

Closes the pane.

void Close()

Events

Closed

Occurs when the pane is closed.

event EventHandler Closed

Event Type

EventHandler

Inherited Members

Extension Methods