Function Reference

_GUICtrlButton_SetShield

指定したボタン、コマンドリンクが高度アイコンを表示するように高度要求状態を設定します。

#Include <GuiButton.au3>
_GUICtrlButton_SetShield($hWnd[, $fRequired = True])

 

パラメータ

$hWnd コントロールのハンドル
$fRequired [オプション]Trueでは高度アイコンを描画、それ以外の場合はFalse

 

返し値

成功: True
失敗: False

 

注意

最低限度のオペレーティングシステム: Windows Vista

 

関連

 

こちらも参照

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

 


#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIConstantsEx.au3>
#include <GuiButton.au3>
#include <WindowsConstants.au3>
#include <GuiMenu.au3>

Opt("MustDeclareVars", 1)

Global $btn, $btn2

; これらのボタンのIDはGuiCtrlReadでは読み取れないことに注意

_Main()

Func _Main()
    Local $hGUI

    $hGUI = GUICreate("Buttons", 400, 400)

    $btn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 90, 30)
    _GUICtrlButton_SetShield($btn)

    $btn2 = _GUICtrlButton_Create($hGUI, "Button2", 10, 60, 90, 30, $BS_SPLITBUTTON)
    _GUICtrlButton_SetShield($btn2)

    GUISetState()

    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd

    Exit

EndFunc   ;==>_Main