CustomStampList.cs 702 B

123456789101112131415161718192021222324252627282930
  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 StampText;
  15. public string StampTextDate;
  16. public int ImageWidth;
  17. public int ImageHeight;
  18. public int StampWidth;
  19. public int StampHeight;
  20. public string ImagePath;
  21. public string SourcePath;
  22. public StampType Type;
  23. public TextStampSharp TextSharp;
  24. public TextStampColor TextColor;
  25. public string ImageType;
  26. }
  27. }