AnnotationHandlerEventArgs.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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;
  9. using System.Windows.Media.Imaging;
  10. namespace PDF_Office.Model.BOTA
  11. {
  12. public class AnnotationHandlerEventArgs : EventArgs
  13. {
  14. public string Content { get; set; }
  15. public string MarkupContent { get; set; }
  16. public string Author { get; set; }
  17. public string CreateTime { get; set; }
  18. public string UpdateTime { get; set; }
  19. public AnnotArgsType EventType { get; set; }
  20. public bool Locked { get; set; }
  21. public bool ReadOnly { get; set; }
  22. public ComPDFKitViewer.FormField FormField { get; set; }
  23. public int PageIndex { get; set; }
  24. public int AnnotIndex { get; set; }
  25. public AnnotHandlerEventArgs AnnotHandlerEventArgs { get; set; }
  26. public WriteableBitmap WriteableBitmap { get; set; }
  27. public CPDFDocument Document { get; set; }
  28. public Rect ClientRect { get; set; }
  29. }
  30. }