GdViewer.PdfLaunchActionEventHandler Delegate
In This Topic
Syntax
'Declaration
<GuidAttribute("13EA88E9-92CB-390A-9601-6A8C831D85AE")>
Public Delegate Sub GdViewer.PdfLaunchActionEventHandler( _
ByVal As PdfActionLaunchOperation, _
ByRef As String, _
ByRef As Boolean _
)
[Guid("13EA88E9-92CB-390A-9601-6A8C831D85AE")]
public delegate void GdViewer.PdfLaunchActionEventHandler(
PdfActionLaunchOperation ,
ref string ,
ref bool
)
public delegate GdViewer.PdfLaunchActionEventHandler(
: PdfActionLaunchOperation;
var : String;
var : Boolean
);
GuidAttribute("13EA88E9-92CB-390A-9601-6A8C831D85AE")
public delegate GdViewer.PdfLaunchActionEventHandler(
: PdfActionLaunchOperation,
: String,
: boolean
)
[Guid("13EA88E9-92CB-390A-9601-6A8C831D85AE")]
public: __gc __delegate void GdViewer.PdfLaunchActionEventHandler(
PdfActionLaunchOperation ,
ref string* ,
ref bool
)
[Guid("13EA88E9-92CB-390A-9601-6A8C831D85AE")]
public delegate void GdViewer.PdfLaunchActionEventHandler(
PdfActionLaunchOperation ,
String^% ,
bool%
)
Parameters
- ActionType
- A member of the PdfActionLaunchOperation enumeration. The type of the launch action to be executed.
- FilePath
- The path of the application to be launched or the file to be opened or printed according to the specified ActionType parameter.
- Cancel
- Allows to cancel the subsequent application launching action when you turn this parameter to true in the raised event.
See Also