EnumPdfViewerAnnotationMode
Defines how PDF forms and interactive elements are displayed and whether users can interact with them. Use this to control form rendering behavior based on your application's requirements for document interaction.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public enum PdfViewerAnnotationMode
Fields
Disable
Disables form field rendering completely - forms appear as static content without visible input elements. Use this mode for pure document viewing when form data should not be visible or interactive. Ideal for displaying documents where form fields would be distracting or irrelevant.
Enable
Displays form fields with their current values but prevents user interaction and editing. Use this mode to show existing form data while maintaining document integrity. Perfect for reviewing completed forms, displaying submitted data, or read-only form viewing.
EnableForms
Renders fully interactive form fields that users can edit and modify. Supports TextBox, CheckBox, DropDown, RadioButton, and Button elements with appropriate editors. Use this mode when users need to fill out forms, update information, or interact with PDF form elements. Enables complete form functionality including data entry, selection changes, and button actions.