vcl-dxpdfviewer-0d0657ab.md
Enumerates available visibility modes for the PDF Viewer‘s Find panel.
TdxPDFViewerFindPanelDisplayMode = (
fpdmManual,
fpdmAlways,
fpdmNever
);
| Name |
|---|
fpdmManual |
fpdmAlways |
fpdmNever |
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’s TextSearch.Find function.
The PDF Document‘s FindText function.
|
The PDF Viewer control’s OptionsFindPanel.DisplayMode property references the TdxPDFViewerFindPanelDisplayMode type.
See Also