fillRect() private method

private fillRect ( int x, int y, int w, int h ) : void
x int
y int
w int
h int
return void
示例#1
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.fillRect(x, y, w, h);
 }
示例#2
0
 public override void execute(WindowsGraphics underlying)
 {
     underlying.setColor(color);
     underlying.setAlpha(alpha);
     underlying.fillRect(x, y, w, h);
 }