PolygonParam.cs 629 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using ComPDFKit.Import;
  7. using ComPDFKit.PDFAnnotation;
  8. namespace ComPDFKit.Tool
  9. {
  10. public class PolygonParam : AnnotParam
  11. {
  12. public double LineWidth { get; set; }
  13. public byte[] LineColor { get; set; }
  14. public List<CPoint> SavePoints { get; set; }
  15. public C_BORDER_INTENSITY Intensity { set; get; }
  16. public C_BORDER_STYLE Style { set; get; }
  17. public PolygonParam()
  18. {
  19. CurrentType = C_ANNOTATION_TYPE.C_ANNOTATION_POLYGON;
  20. }
  21. }
  22. }