Function Reference

_GUICtrlSlider_Destroy

コントロールを削除します。

#Include <GuiSlider.au3>
_GUICtrlSlider_Destroy(ByRef $hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

成功: True、ハンドルが0に設定されます
失敗: False

 

注意

_GUICtrlSlider_Createで作成されたスライダーのみに使用できます。

 

関連

_GUICtrlSlider_Create

 


#include <GuiConstantsEx.au3>
#include <GuiSlider.au3>

Opt('MustDeclareVars', 1)

$Debug_S = False ; 関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hGUI, $hSlider

    ; GUIを作成
    $hGUI = GUICreate("(UDF Created) Slider Destroy", 400, 296)
    $hSlider = _GUICtrlSlider_Create($hGUI, 2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS))
    GUISetState()

    MsgBox(4160, "Information", "Destroy Slider")
    _GUICtrlSlider_Destroy($hSlider)
   
    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main