カレンダーコントロールを破棄します。
#Include <GuiMonthCal.au3>
_GUICtrlMonthCal_Destroy(ByRef $hWnd)
パラメータ
$hWnd | コントロールのハンドル |
返し値
成功: | True、ハンドルが0に設定されます |
失敗: | False |
注意
_GUICtrlMonthCal_Createで作成されたカレンダーにのみ使用できます。
関連
_GUICtrlMonthCal_Create
例
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
$Debug_MC = False ; MonthCal関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用
_Main()
Func _Main()
Local $hGUI, $HandleBefore, $hMonthCal
; GUIを作成
$hGUI = GUICreate("Month Calendar Destroy", 400, 300)
$hMonthCal = _GUICtrlMonthCal_Create($hGUI, 4, 4, $WS_BORDER)
GUISetState()
$HandleBefore = $hMonthCal
MsgBox(4160, "Information", "Destroying the Control for Handle: " & $hMonthCal)
MsgBox(4160, "Information", "Control Destroyed: " & _GUICtrlMonthCal_Destroy($hMonthCal) & @LF & _
"Handel Before Destroy: " & $HandleBefore & @LF & _
"Handle After Destroy: " & $hMonthCal)
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main