CustomStampList.cs 802 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using ComPDFKitViewer.AnnotEvent;
  7. namespace PDFSettings
  8. {
  9. public class CustomStampList:List<StampAnnote>
  10. {
  11. }
  12. public class StampAnnote
  13. {
  14. public string Author;
  15. public string StampText;
  16. public string StampTextDate;
  17. public int ImageWidth;
  18. public int ImageHeight;
  19. public int StampWidth;
  20. public int StampHeight;
  21. public string ImagePath;
  22. public string SourcePath;
  23. public StampType Type;
  24. public TextStampSharp TextSharp;
  25. public TextStampColor TextColor;
  26. public string ImageType;
  27. public bool IsCheckedDate;
  28. public bool IsCheckedTime;
  29. }
  30. }