Obtient la hauteur de la zone cliente d'une fen�tre
#include <WinAPISysWin.au3>
_WinAPI_GetClientHeight ( $hWnd )
$hWnd | Handle de la fen�tre |
Succ�s: | Retourne la hauteur de la zone cliente. |
�chec: | D�finit @error <> 0. |
#include <MsgBoxConstants.au3> #include <WinAPISysWin.au3> Example() Func Example() Local $hWnd $hWnd = GUICreate("test") MsgBox($MB_SYSTEMMODAL, "Client", "Hauteur zone cliente: " & _WinAPI_GetClientHeight($hWnd)) EndFunc ;==>Example