Exemplo n.º 1
0
 /// <summary>
 /// Contstructor
 /// </summary>
 public MiniHtml()
 {
     masterTag       = new MasterTag(this, "Master", new PropertyList(), -1, 50);
     documentOutput  = new GraphicsOutputType(masterTag);
     tagPositionList = new TagList();
     parentCss       = new QuickZip.MiniCss.MiniCss(this);
     parser          = new InternalParaser(this, parentCss);
 }
Exemplo n.º 2
0
 public BBCodeParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
Exemplo n.º 3
0
 public BBCodeParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
Exemplo n.º 4
0
 public TextParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
Exemplo n.º 5
0
 public TextParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
Exemplo n.º 6
0
 public InternalParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
Exemplo n.º 7
0
 public InternalParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
Exemplo n.º 8
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(QuickZip.MiniCss.MiniCss ms)
 {
     parentHtml = null;
     parentCss  = ms;
 }
Exemplo n.º 9
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(MiniHtml mh)
 {
     parentHtml = mh;
     parentCss  = new QuickZip.MiniCss.MiniCss(mh);
 }
Exemplo n.º 10
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms)
 {
     parentHtml = mh;
     parentCss  = ms;
 }