AnnotationHandlerEventArgs.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. using ComPDFKit.PDFDocument;
  2. using ComPDFKitViewer.AnnotEvent;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Media.Imaging;
  11. namespace PDF_Master.Model.BOTA
  12. {
  13. public class AnnotationHandlerEventArgs : EventArgs
  14. {
  15. public string Content { get; set; }
  16. public string MarkupContent { get; set; }
  17. public string Author { get; set; }
  18. public string CreateTime { get; set; }
  19. public string UpdateTime { get; set; }
  20. public AnnotArgsType EventType { get; set; }
  21. public bool Locked { get; set; }
  22. public bool ReadOnly { get; set; }
  23. public ComPDFKitViewer.FormField FormField { get; set; }
  24. public int PageIndex { get; set; }
  25. public int AnnotIndex { get; set; }
  26. public AnnotHandlerEventArgs AnnotHandlerEventArgs { get; set; }
  27. public BitmapImage WriteableBitmap { get; set; }
  28. public CPDFDocument Document { get; set; }
  29. public Rect ClientRect { get; set; }
  30. }
  31. }