123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ComPDFKitViewer.AnnotEvent;
- namespace PDFSettings
- {
- public class CustomStampList:List<StampAnnote>
- {
-
- }
- public class StampAnnote
- {
- public string Author;
- public string StampText;
- public string StampTextDate;
- public int ImageWidth;
- public int ImageHeight;
- public int StampWidth;
- public int StampHeight;
- public string ImagePath;
- public string SourcePath;
- public StampType Type;
- public TextStampSharp TextSharp;
- public TextStampColor TextColor;
- public string ImageType;
- public bool IsCheckedDate;
- public bool IsCheckedTime;
- }
- }
|