public override void FillRect(HtRect rect, HtColor color, object userData) { Console.WriteLine("FillRect {0} {1} {2}", rect, color, userData); }
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); }
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); }
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(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); }
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); }