DigitalSignatureUI Class
Represents the digital signature panel in the PDF viewer's side panel.
export declare class DigitalSignatureUI implements VisibilityElement
- Inheritance:
-
DigitalSignatureUI
Implements
Remarks
This class provides configuration options for the digital signature panel, including title, description, and button text. It controls whether the panel is visible or hidden.
Properties
isVisible
The current visibility state of the element.
get isVisible(): boolean;
set isVisible(value: boolean);
Parameters
-
value
The new visibility state (true to show, false to hide).
title
The title of the digital signature section on the side panel.
get title(): string | undefined;
set title(value: string | undefined);
Parameters
-
value
The title text to display, or undefined to clear it.
Remarks
This property controls the title shown for digital signature on the side panel. When the value is undefined, the default translation is used.
description
The description of the digital signature section on the side panel.
get description(): string | undefined;
set description(value: string | undefined);
Parameters
-
value
The description text to display, or undefined to clear it
Remarks
This property controls the description shown below the title on the side panel. When the value is undefined, the default translation is used.
buttonText
The text of the button for the digital signature section on the side panel.
get buttonText(): string | undefined;
set buttonText(value: string | undefined);
Parameters
-
value
The button text to display, or undefined to clear it
Remarks
This property controls the text shown on the button on the side panel that triggers the signature action. When the value is undefined, the default translation is used.