In This Article

IQuickInfoSession Interface

Provides the base requirements for an object that represents an IntelliPrompt quick info session.

public interface IQuickInfoSession : IIntelliPromptSession, IServiceLocator

Properties

Content

Gets the content to display in the quick info popup.

object Content { get; }

Property Value

System.Object:

The content to display in the quick info popup.

Context

Gets an object that describes the context in which the quick info popup is displayed.

object Context { get; }

Property Value

System.Object:

An object that describes the context in which the quick info popup is displayed.

ControlKeyDownOpacity

Gets the opacity of the popup while the control key is pressed.

double ControlKeyDownOpacity { get; }

Property Value

System.Double:

The opacity of the popup while the control key is pressed.

Remarks

Set the value to 1.0 to prevent opacity changes when the control key is pressed.

MaxWidth

Gets the quick info popup's maximum width.

double MaxWidth { get; }

Property Value

System.Double:

The quick info popup's maximum width, or NaN to indicate no constraint.

Placement

Gets the System.Windows.Controls.Primitives.PlacementMode describing where to place the popup when a PlacementTarget is specified.

PlacementMode Placement { get; }

Property Value

System.Windows.Controls.Primitives.PlacementMode:

The System.Windows.Controls.Primitives.PlacementMode describing where to place the popup when a PlacementTarget is specified.

PlacementRectangle

Gets the PlacementTarget-relative bounds for where to target the popup when a PlacementTarget is specified.

Rect PlacementRectangle { get; }

Property Value

System.Windows.Rect:

The PlacementTarget-relative bounds for where to target the popup when a PlacementTarget is specified.

PlacementTarget

Gets the visual element against which to target the popup when not opening the session for a text range.

UIElement PlacementTarget { get; }

Property Value

System.Windows.UIElement:

The visual element against which to target the popup when not opening the session for a text range.

See Also

Methods

Open(IEditorView, PlacementMode, UIElement, Rect)

Opens the session around a placement target, attaching to the specified IEditorView.

void Open(IEditorView view, PlacementMode placement, UIElement placementTarget, Rect placementRectangle)
Parameter Type Description
view IEditorView

The IEditorView in which the session is opened.

placement System.Windows.Controls.Primitives.PlacementMode

A System.Windows.Controls.Primitives.PlacementMode indicating the mode by which to display the quick info.

placementTarget System.Windows.UIElement

The target System.Windows.UIElement for placing the quick info.

placementRectangle System.Windows.Rect

The target-relative System.Windows.Rect around which to display the quick info.

Events

RequestNavigate

Occurs when a hyperlink is clicked that requests navigation.

event RequestNavigateEventHandler RequestNavigate

Event Type

System.Windows.Navigation.RequestNavigateEventHandler

Inherited Members