12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Service.Model.PowerPoint
- {
- public class Htex
- {
- public Htex() {
- slides = new List<string>();
- //size = new PptSize();
- //FontStyles = new Dictionary<string, FontStyle>();
- //Fills = new Dictionary<string, Fill>();
- //ParagraphStyles = new Dictionary<string, ParagraphStyle>();
- //BuChars = new Dictionary<string, BuChar>();
- //Borders = new Dictionary<string, Border>();
- }
- public HtexSize size { get; set; }
- //缩略图
- public string thumbnail { get; set; }
- //PPT幻灯片集合
- // public List<string> HiXmls { get; set; }
- public List<string> slides { get; set; }
- // public string PptUrl { get; set; }
- // public string Sha1Code { get; set; }
- //页数
- public int page { get; set; }
- //public Dictionary<string, FontStyle> FontStyles { get;set;}
- //public Dictionary<string, Fill> Fills { get; set; }
- //public Dictionary<string, ParagraphStyle> ParagraphStyles { get; set; }
- //public Dictionary<string, BuChar> BuChars { get; set; }
- //public Dictionary<string, Border> Borders { get; set; }
- }
- public class HtexSize
- {
- //宽度
- public double width { get; set; }
- //高度
- public double height { get; set; }
- }
- }
|