Beispiel #1
0
 public void DrawVLine(int x, int y, int l, int c, bool clear = false)
 {
     ClampXY(ref x, ref y);
     l = MathHelper.Clamp(l, 0, Height - y);
     ParentWindow.DrawVLine(x + PostionX, y + PostionY, l, c, clear);
 }