* @param handle
* the handle of the specified appbar
* @return the information of the size and position of the specified appbar
*/
public static RECT getAppBarPosition(int handle) {
APPBARDATA appBarData = new APPBARDATA();
appBarData.hWnd = handle;
Extension.SHAppBarMessage(Win32.AMB_GETTASKBARPOS, appBarData);
RECT rc = new RECT();
rc.left = appBarData.rcLeft;
rc.top = appBarData.rcTop;