Java Robot awtRobotKeyRelease(final Robot robot, final int keyCode, final int msDelay)

Here you can find the source of awtRobotKeyRelease(final Robot robot, final int keyCode, final int msDelay)

Description

awt Robot Key Release

License

Open Source License

Declaration

private static void awtRobotKeyRelease(final Robot robot,
            final int keyCode, final int msDelay) 

Method Source Code

//package com.java2s;

import java.awt.Robot;

public class Main {
    private static void awtRobotKeyRelease(final Robot robot,
            final int keyCode, final int msDelay) {
        robot.keyRelease(keyCode);/*from   w w w  .ja v a2s  .  c o m*/
        robot.delay(msDelay);
    }
}

Related

  1. awtRobotKeyPress(final Robot robot, final int keyCode, final int msDelay)
  2. keyPress(final int i, final Robot robot, final boolean press, final int keyCode, final int msDelay)
  3. keyPressWithCtrl(Robot r, int key)
  4. pressKeyCombo(Robot robot, int... codes)