Features Class
Provides access to various features available in the PDF viewer.
export declare class Features
- Inheritance:
-
Features
Remarks
This class contains references to feature modules that handle specific aspects of PDF viewing and manipulation, such as annotations, digital signing, zoom controls, page navigation, and search functionality.
Fields
annotations
Gets the annotations feature module.
readonly annotations: Annotations;
Field Value
Remarks
Provides functionality for working with PDF annotations including highlighting, underlining, sticky notes, etc.
digitalSigning
Gets the digital signing feature module (if enabled).
readonly digitalSigning?: DigitalSigning;
Field Value
Remarks
Provides functionality for digitally signing PDF documents. This property is optional and only available when digital signing is configured in the viewer options.
zoom
Gets the zoom feature module.
readonly zoom: Zoom;
Field Value
Remarks
Provides functionality for zooming and scaling the PDF document view.
page
Gets the page navigation feature module.
readonly page: PageNavigation;
Field Value
Remarks
Provides functionality for navigating between pages in the PDF document.
search
Gets the search feature module.
readonly search: Search;
Field Value
Remarks
Provides functionality for searching text within the PDF document.