1234567891011121314151617181920212223242526272829303132333435 |
- using ComPDFKit.PDFDocument;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model.EditTools.Background
- {
- public class BackgroundCreateModel
- {
- }
- public enum EnumBackgroundType
- {
- StatusColor,
- StatusFile
- }
- public class BackgroundInfo
- {
- public EnumBackgroundType EnumBackgroundType { get; set; }
- public string Color { get; set; }
- public string Rotation { get; set; }
- public byte Opacity { get; set; }
- public bool IsRelativeRatio { get; set; }
- public int RelativeRatio { get; set; }
- public int VerticalMove { get; set; }
- public int HorizontalMove { get; set; }
- public C_Background_Vertalign BackgroundVertalign { get; set; }
- public C_Background_Horizalign BackgroundHorizalign { get; set; }
- public C_Background_Type BackgroundType { get; set; }
- public byte[] ImageArray { get; set; }
- }
- }
|