123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
-
- namespace Paroxe.PdfRenderer
- {
-
-
-
-
- public interface IPDFDeviceActionHandler
- {
-
-
-
-
-
- void HandleGotoAction(IPDFDevice device, int pageIndex);
-
-
-
-
-
- void HandleLaunchAction(IPDFDevice device, string filePath);
-
-
-
-
-
-
-
- string HandleRemoteGotoActionPasswordResolving(IPDFDevice device, string resolvedFilePath);
-
-
-
-
-
-
-
-
- string HandleRemoteGotoActionPathResolving(IPDFDevice device, string filePath);
-
-
-
-
-
-
-
- void HandleRemoteGotoActionResolved(IPDFDevice device, PDFDocument document, int pageIndex);
-
-
-
-
-
- void HandleRemoteGotoActionUnresolved(IPDFDevice device, string resolvedFilePath);
-
-
-
-
- void HandleUnsuportedAction(IPDFDevice device);
-
-
-
-
-
- void HandleUriAction(IPDFDevice device, string uri);
- }
- }
|