removeClip() private method

private removeClip ( ) : void
return void
示例#1
0
 public void executeWithClip(WindowsGraphics underlying)
 {
     if (clip.getWidth() > 0 && clip.getHeight() > 0)
     {
         underlying.setClip(clip);
         execute(underlying);
         underlying.removeClip();
     }
 }