123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class Paragraph
- {
- public ParagraphStyle ParagraphStyle { get; set; }
- public Paragraph() {
- Texts = new List<Text>();
- }
- public BuChar BuChar { get; set; }
- public List<Text> Texts { get; set; }
- }
- public class Text
- {
- public string Content { get; set; }
- public string Href { get; set; }
-
- public FontStyle FontStyle { get; set; }
- }
- public class BuChar{
- public int MarginLeft { get; set; }
- public int MarginRiht { get; set; }
- public string Buchar { get; set; }
- public string Typeface { get; set; }
- public int FontSize { get; set; }
- }
- public class ParagraphStyle
- {
- public string VertAlign { get; set; }
- // public string LeftMargin { get; set; }
- public string HoriAlign { get; set; }
- }
- }
|