设置窗口的大小 @param hwnd 指定的窗口句柄 @param width 宽度 @param height 高度 @return 0: 失败 1:成功
(int hwnd,int width,int height)
| 400 | * @return 0: 失败 1:成功 |
| 401 | */ |
| 402 | public int SetWindowSize(int hwnd,int width,int height){ |
| 403 | return Dispatch.call(dm,"SetWindowSize",hwnd,width,height).getInt(); |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * 设置窗口的状态 |