AnnotationHandlerEventArgs.cs 1.0 KB

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