using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ComPDFKit.Import; using ComPDFKit.PDFAnnotation; namespace ComPDFKit.Tool { public class PolygonParam : AnnotParam { public double LineWidth { get; set; } public byte[] LineColor { get; set; } public List SavePoints { get; set; } public C_BORDER_INTENSITY Intensity { set; get; } public C_BORDER_STYLE Style { set; get; } public PolygonParam() { CurrentType = C_ANNOTATION_TYPE.C_ANNOTATION_POLYGON; } } }