Beispiel #1
0
 public override void FillRect(HtRect rect, HtColor color, object userData)
 {
     Console.WriteLine("FillRect {0} {1} {2}", rect, color, userData);
 }
Beispiel #2
0
 public override void Draw(string id, HtRect rect, HtColor color, string text, bool isEffect, Core.DrawTextEffect effect, HtColor effectColor, int effectAmount, string linkText, object userData)
 {
     Console.WriteLine("DrawText: {0} {1} {2} {3} {4} {5} {6} {7} {8} {9} {10}", this, id, rect, color, text, isEffect, effect, effectColor, effectAmount, linkText, userData);
 }
Beispiel #3
0
 public override void Draw(string id, HtRect rect, HtColor color, string linkText, object userData)
 {
     Console.WriteLine("DrawImage {0} {1} {2} {3} {4} {5}", this, id, rect, color, linkText, userData);
 }
 public override void Draw(HtRect rect, HtColor color) { Console.WriteLine("DrawImage {0} {1} {2}", this, rect, color); }
 public override void FillRect(HtRect rect, HtColor color) { Console.WriteLine("FillRect {0} {1}", rect, color); }
Beispiel #6
0
 public override void Draw(HtRect rect, HtColor color, string text)
 {
     Console.WriteLine("DrawText: {0} {1} {2} {3}", this, rect, color, text);
 }
 public override void Draw(HtRect rect, HtColor color, string text) { Console.WriteLine("DrawText: {0} {1} {2} {3}", this, rect, color, text); }
Beispiel #8
0
 public override void FillRect(HtRect rect, HtColor color)
 {
     Console.WriteLine("FillRect {0} {1}", rect, color);
 }
Beispiel #9
0
 public override void Draw(HtRect rect, HtColor color)
 {
     Console.WriteLine("DrawImage {0} {1} {2}", this, rect, color);
 }
Beispiel #10
0
 public override void Draw(HtSpan span, string id, HtRect rect, HtColor color, string text, bool isEffect, Core.DrawTextEffect effect, HtColor effectColor, int effectAmount, Core.HtmlLink link, object userData)
 {
         Console.WriteLine("DrawText: {0} {1} {2} {3} {4} {5} {6} {7} {8} {9} {10}", 
             this, 
             id, 
             rect, 
             color, 
             text, 
             isEffect, 
             effect, 
             effectColor, 
             effectAmount, 
             link == null ? null : link.linkText, 
             userData);
 }
Beispiel #11
0
 public override void FillRect(HtRect rect, HtColor color, object userData) { Console.WriteLine("FillRect {0} {1} {2}", rect, color, userData); }
Beispiel #12
0
 public override void Draw(string id, HtRect rect, HtColor color, Core.HtmlLink link, object userData) {
   Console.WriteLine("DrawImage {0} {1} {2} {3} {4} {5}", 
       this,
       id, 
       rect, 
       color,
       link == null ? null : link.linkText, 
       userData);
 }