public static bool PostMessageKeyDown(string key)
 {
     return(PostMessageKeyDown(InputUtil.StringToVkCode(key)));
 }
 public static bool PostMessageKeyPress(string key)
 {
     return(PressKey(InputUtil.StringToVkCode(key)));
 }
 public static bool PostMessageKeyPress(string key, int x, int y)
 {
     return(PostMessageKeyPress(InputUtil.StringToVkCode(key), x, y));
 }
 public static bool IsKeyPressed(string key)
 {
     return(GetAsyncKeyState(InputUtil.StringToVkCode(key)) != 0);
 }
 public static void PostMessageKeyUp(string key)
 {
     PostMessageKeyUp(InputUtil.StringToVkCode(key));
 }