PPTXSlide.cs 680 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml.Serialization;
  5. namespace TEAMModelOS.SDK.Module.PowerPointX.Model
  6. {
  7. public class PPTXSlide
  8. {
  9. public PPTXSlide() {
  10. Elements = new List<PPTXElement>();
  11. }
  12. //public int Width { get; set; }
  13. //public int Height { get; set; }
  14. [XmlElement(typeof(PPTXChart))]
  15. [XmlElement(typeof(PPTXConnector))]
  16. [XmlElement(typeof(PPTXContainer))]
  17. [XmlElement(typeof(PPTXPicture))]
  18. [XmlElement(typeof(PPTXPosition))]
  19. [XmlElement(typeof(PPTXTable))]
  20. public List<PPTXElement> Elements { get; set; }
  21. }
  22. }