函式
函式原型:BOOL Rectangle(HDC hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
參數
hdc:設備環境句柄。
nLeftRect:指定矩形左上角的邏輯X坐標。
nTopRect:指定矩形左上角的邏輯Y坐標。
nRightRect:指定矩形右下角的邏輯X坐標。
nBottomRect:指定矩形右下角的邏輯Y坐標。
返回值:如果函式調用成功,返回值非零,否則返回值為0。
Windows NT:若想獲得更多錯誤信息,請調用GetLastError函式。
備註:此函式不使用和改變當前位置。
速查:Windows NT:3.1及以上版本;Windows:95及以上版本;Windows CE:1.0及以上版本;頭檔案:wingdi.h;庫檔案:gdi32.lib。
示例
Rectangle(hdc,0,0,100,100);