JavaScriptAction.vb
  1. ''
  2. '' This code is part of Document Solutions for PDF demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports System.Drawing
  7. Imports GrapeCity.Documents.Text
  8. Imports GrapeCity.Documents.Pdf
  9. Imports GrapeCity.Documents.Pdf.Annotations
  10. Imports GrapeCity.Documents.Pdf.Actions
  11.  
  12. '' Shows how to associate a PDF action with a JavaScript script.
  13. '' In this example the script is associated with a link on a page.
  14. '' Note that JavaScript may not work in some PDF viewers (e.g. built-in browser viewers).
  15. '' See JavaScript for Acrobat for details.
  16. Public Class JavaScriptAction
  17.  
  18. Const js =
  19. "var cChoice = app.popUpMenu(""Introduction"", "" - "", ""Chapter 1""," + vbCrLf +
  20. "[ ""Chapter 2"", ""Chapter 2 Start"", ""Chapter 2 Middle""," + vbCrLf +
  21. "[""Chapter 2 End"", ""The End""]]);" + vbCrLf +
  22. "app.alert(""You chose the '"" + cChoice + ""' menu item"");"
  23.  
  24. Function CreatePDF(ByVal stream As Stream) As Integer
  25. Dim doc = New GcPdfDocument()
  26. Dim g = doc.NewPage().Graphics
  27. Dim jsAction = New ActionJavaScript(js)
  28. Dim tf = New TextFormat() With {.Font = StandardFonts.Times, .FontSize = 14}
  29. '' Draw the link string in a rectangle:
  30. Dim text = "Click this to show the popup menu."
  31. Dim rect = New RectangleF(New PointF(72, 72), g.MeasureString(text, tf))
  32. g.FillRectangle(rect, Color.LightGoldenrodYellow)
  33. g.DrawString(text, tf, rect)
  34. Dim result = New LinkAnnotation(rect, jsAction)
  35. doc.Pages.Last.Annotations.Add(result)
  36. '' Add warning about this possibly not working in a browser:
  37. Util.AddNote("Note that JavaScript may not work in some PDF viewers such as built-in browser viewers.",
  38. doc.Pages.Last, New RectangleF(rect.X, rect.Bottom + 36, 400, 400))
  39. ''
  40. '' Done:
  41. doc.Save(stream)
  42. Return doc.Pages.Count
  43. End Function
  44. End Class
  45.