예제 #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);
 }
예제 #2
0
 public BBCodeParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
예제 #3
0
 public BBCodeParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
예제 #4
0
 public TextParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
예제 #5
0
 public TextParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
예제 #6
0
 public InternalParaser(QuickZip.MiniCss.MiniCss ms) : base(ms)
 {
 }
예제 #7
0
 public InternalParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms) : base(mh, ms)
 {
 }
예제 #8
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(QuickZip.MiniCss.MiniCss ms)
 {
     parentHtml = null;
     parentCss  = ms;
 }
예제 #9
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(MiniHtml mh)
 {
     parentHtml = mh;
     parentCss  = new QuickZip.MiniCss.MiniCss(mh);
 }
예제 #10
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CustomParaser(MiniHtml mh, QuickZip.MiniCss.MiniCss ms)
 {
     parentHtml = mh;
     parentCss  = ms;
 }