Initialize a new instance of PdfEmbeddedGoToAction.

Namespace: Spire.Pdf.Actions
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfEmbeddedGoToAction(
	string fileName,
	PdfDestination dest,
	bool newWindow
)
Public Sub New ( 
	fileName As String,
	dest As PdfDestination,
	newWindow As Boolean
)
public:
PdfEmbeddedGoToAction(
	String^ fileName, 
	PdfDestination^ dest, 
	bool newWindow
)
new : 
        fileName : string * 
        dest : PdfDestination * 
        newWindow : bool -> PdfEmbeddedGoToAction

Parameters

fileName
String
The target PDF file name to be opened.
dest
PdfDestination
The destination.
newWindow
Boolean
If true, the target PDF would be opened in a new window.Otherwise false.

See Also