123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib.Models.HTEX
- {
- public abstract class HtexElement
- {
- protected double top;
- protected double rot;
- protected double left;
- protected double width;
- protected double height;
- protected double fontSize;
- protected string fontFamily;
- protected string fontColor;
- protected string id;
- protected PPTSlide slide;
- // protected string cssClass;
- protected bool invisible;
- protected bool animatable;
- protected int index;
- // Sp CxnSp Media Group Table Chart Diagram
- protected string type;
- //水平翻转
- public int flipH { get; set; } = 0;
- //垂直翻转
- public int flipV { get; set; } = 0;
- public abstract List<Item> DrawElement();
- public string partForm { get; set; }
- public string sid { get; set; }
- }
- }
|