Function Reference

_GDIPlus_GraphicsFillRect

長方形を塗りつぶします。

#Include <GDIPlus.au3>
_GDIPlus_GraphicsFillRect($hGraphics, $iX, $iY, $iWidth, $iHeight[, $hBrush = 0])

 

パラメータ

$hGraphics Graphicsオブジェクトのハンドル
$iX 長方形の左上隅のX座標
$iY 長方形の左上隅のY座標
$iWidth 長方形の幅
$iHeight 長方形の高さ
$hBrush [オプション]長方形の塗りつぶしに使用されるBrushオブジェクトのハンドル。0の場合、黒いブラシが使用されます。

 

返し値

成功: True
失敗: False

 

注意

なし。

 

関連

 

こちらも参照

MSDNライブラリでGdipFillRectangleIを検索して下さい。

 

Example


#include <GuiConstantsEx.au3>
#include <GDIPlus.au3>

Opt('MustDeclareVars', 1)

_Main()

Func _Main()
    Local $hGUI, $hGraphic

    ; GUI作成
    $hGUI = GUICreate("GDI+", 400, 300)
    GUISetState()

    ; 長方形を塗りつぶす
    _GDIPlus_Startup ()
    $hGraphic = _GDIPlus_GraphicsCreateFromHWND ($hGUI)
    _GDIPlus_GraphicsFillRect($hGraphic, 10, 10, 100, 100)

    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE

    ; リソースを破棄
    _GDIPlus_GraphicsDispose ($hGraphic)
    _GDIPlus_Shutdown ()

EndFunc   ;==>_Main