Skip to main content
A newer version of this page is available. .

RepositoryItemTokenEdit.PopupPanelOptions Property

Provides access to the set of properties that specify the peek panel behavior.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
public PopupPanelOptions PopupPanelOptions { get; }

Property Value

Type Description
PopupPanelOptions

A PopupPanelOptions object that stores the set of properties that specify the peek panel behavior.

Remarks

A TokenEdit control can display a FlyoutPanel object, assigned to the editor’s RepositoryItemTokenEdit.PopupPanel property when an end-user hovers a token within this editor. This panel allows you to show the desired info about the currently hovered token.

The PopupPanelOptions property provides access to the following properties:

  • the PopupPanelOptions.Location property - allows you to specify whether the peek panel will be displayed above the corresponding token, below it or relative to the mouse cursor.
  • the PopupPanelOptions.ShowMode property - gets or sets the scenario on which the peek panel is shown. The default scenario is a token hover (the ShowOnTokenMouseHover value).
  • the PopupPanelOptions.ShowPopupPanel property - the boolean property that specifies whether or not the peek panel should be displayed once the scenario specified via the ShowMode property occurs.

See the Token Edit Control topic to learn more.

See Also