HtmlPresentationElement.cs 517 B

12345678910111213141516171819
  1. namespace ClearSlideLibrary.HtmlController
  2. {
  3. internal abstract class HtmlPresentationElement
  4. {
  5. protected int top;
  6. protected int left;
  7. protected int width;
  8. protected int height;
  9. protected double fontSize;
  10. protected string fontFamily;
  11. protected string fontColor;
  12. protected string id;
  13. protected string cssClass;
  14. protected bool invisible;
  15. protected bool animatable;
  16. public abstract string DrawElement();
  17. }
  18. }