Paragraph.cs 990 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HiTeachCC.Model.PowerPoint
  5. {
  6. public class Paragraph
  7. {
  8. public ParagraphStyle ParagraphStyle { get; set; }
  9. public Paragraph() {
  10. Texts = new List<Text>();
  11. }
  12. public BuChar BuChar { get; set; }
  13. public List<Text> Texts { get; set; }
  14. }
  15. public class Text
  16. {
  17. public string Content { get; set; }
  18. public string Href { get; set; }
  19. public FontStyle FontStyle { get; set; }
  20. }
  21. public class BuChar{
  22. public int MarginLeft { get; set; }
  23. public int MarginRiht { get; set; }
  24. public string Buchar { get; set; }
  25. public string Typeface { get; set; }
  26. public int FontSize { get; set; }
  27. }
  28. public class ParagraphStyle
  29. {
  30. public string VertAlign { get; set; }
  31. // public string LeftMargin { get; set; }
  32. public string HoriAlign { get; set; }
  33. }
  34. }