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