Exemple #1
0
 public void DrawPie(
     int x,
     int y,
     int width,
     int height,
     int startAngle,
     int sweepAngle,
     [LuaColorParam] object line       = null,
     [LuaColorParam] object background = null)
 {
     luaPictureBox.DrawPie(x, y, width, height, startAngle, sweepAngle, _th.SafeParseColor(line), _th.SafeParseColor(background));
 }
 public void DrawPie(
     int x,
     int y,
     int width,
     int height,
     int startAngle,
     int sweepAngle,
     Color?line       = null,
     Color?background = null)
 {
     luaPictureBox.DrawPie(x, y, width, height, startAngle, sweepAngle, line, background);
 }