Example #1
0
 public override void DrawRectangle(Color color, float size, RPLFormat.BorderStyles style, RectangleF rectangle)
 {
     this.m_graphics.DrawRectangle(GDIPen.GetPen(this.m_pens, color, (float)this.ConvertToPixels(size), style), rectangle);
 }
Example #2
0
 public override void DrawLine(Color color, float size, RPLFormat.BorderStyles style, float x1, float y1, float x2, float y2)
 {
     this.m_graphics.DrawLine(GDIPen.GetPen(this.m_pens, color, (float)this.ConvertToPixels(size), style), x1, y1, x2, y2);
 }