Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxFindPanelDisplayMode Enum

Enumerates the Find Panel‘s end-user availability options.

#Declaration

Delphi
TcxFindPanelDisplayMode = (
    fpdmNever,
    fpdmManual,
    fpdmAlways
);

#Members

Name
fpdmNever
fpdmManual
fpdmAlways

#Remarks

Options include:

Value

Description

fpdmNever

The Find Panel cannot be displayed.

fpdmManual

Pressing the Ctrl+F key combination in a focused control/focused grid View invokes the Find Panel and moves focus to its Find box. End-users can close the Find Panel either by clicking the Close button or by pressing the Esc key in a Find box that is empty. Use the grid View’s FindPanel.ShowCloseButton property or the tree list’s/vertical grid’s FindPanel.ShowCloseButton property to switch the button visibility.

In addition, the ExpressQuantumGrid allows end-users to switch the panel visibility by clicking the “Find Panel” item in the column header popup menu.

fpdmAlways

The Find Panel is always displayed in the control/grid View. End-users cannot close the Find Panel using the methods described above.

See Also