Class: LaunchAction

PSPDFKit.Actions.LaunchAction

PDF action to launch a file. This action is not implemented yet.

It is an Immutable.Record and thus can be updated using set(key, value), for example: action.set("filePath", 2);.

Constructor

new PSPDFKit.Actions.LaunchAction(args)

Launch a file.

Parameters:
Name Type Description
args object
Example

Create a new LaunchAction

const action = new PSPDFKit.Actions.LaunchAction({ filePath: "./some/file.mp4" });

Extends

Members




Members

filePath: string

The file path to launch.

Type:
  • string

subActions: PSPDFKit.Immutable.List.<Action>

Actions can be chained by adding them to this immutable List.

Type: