Skip to main content

TdxPDFViewerFindPanelDisplayMode Enum

Enumerates available visibility modes for the PDF Viewer‘s Find panel.

Declaration

TdxPDFViewerFindPanelDisplayMode = (
    fpdmManual,
    fpdmAlways,
    fpdmNever
);

Members

Name
fpdmManual
fpdmAlways
fpdmNever

Remarks

Options include:

Value

Description

fpdmManual

Allows you to change the Find panel’s visibility by calling the PDF Viewer’s ShowFindPanel and HideFindPanel procedures. All end-user Find panel-related capabilities (including the Find command and the Ctrl+F key combination) are available.

Note that the Find panel cannot be displayed if no document is loaded.

fpdmAlways

The Find panel is always visible when the document is displayed, and all the capabilities that change the panel visibility are disabled.

fpdmNever

The Find panel is hidden and cannot be displayed. As in the case of the fpdmAlways mode, all the capabilities to change the panel visibility are disabled. If the fpdmNever value is selected, you can only perform search operations programmatically by calling either of the following methods:

The PDF Viewer control’s OptionsFindPanel.DisplayMode property references the TdxPDFViewerFindPanelDisplayMode type.

See Also