In This Article

IAdornmentManager Interface

Provides the base requirements for an ITextView adornment manager, that adds and removes adornments to a particular IAdornmentLayer as appropriate.

public interface IAdornmentManager

Properties

AdornmentLayer

Gets the IAdornmentLayer being managed by this manager.

IAdornmentLayer AdornmentLayer { get; }

Property Value

IAdornmentLayer:

The IAdornmentLayer being managed by this manager.

IsActive

Gets or sets whether the manager's adornments are currently active, generally based on some option or event.

bool IsActive { get; set; }

Property Value

bool:

true if the manager's adornments are currently active; otherwise, false.

View

Gets the view to which this manager is attached.

ITextView View { get; }

Property Value

ITextView:

The view to which this manager is attached.

Methods

Close()

Closes the manager and detaches it from the view.

void Close()