函数参考


_GUICtrlEdit_Destroy

删除编辑框控件

#include <GuiEdit.au3>
_GUICtrlEdit_Destroy(ByRef $hWnd)

参数

$hWnd 控件的控件ID/句柄

返回值

成功: 返回 True, 句柄设置为 0
失败: 返回 False

注意/说明

仅用于 _GUICtrlEdit_Create 创建的控件

相关

_GUICtrlEdit_Create

示例/演示


#include <GuiEdit.au3>
#include <GUIConstantsEx.au3>

$Debug_Ed = False ; Check ClassName being passed to Edit functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
    Local $hGUI, $hEdit

    ; 创建 GUI
    $hGUI = GUICreate("Edit Destroy", 400, 300)
    $hEdit = _GUICtrlEdit_Create($hGUI, "This is a test" & @CRLF & "Another Line", 2, 2, 394, 268)
    GUISetState()

    _GUICtrlEdit_AppendText($hEdit, @CRLF & "Append to the end?")

    MsgBox(4160, "信息", "Destroy Edit Control")
    _GUICtrlEdit_Destroy($hEdit)

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main