Function Reference

_GUICtrlRichEdit_Destroy

リッチエディットコントロールを削除します。

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_Destroy(ByRef $hWnd)

 

パラメータ

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

 

返し値

成功: True。ハンドルは0に設定されます。
失敗: 0を返し、@errorを設定します:
@error: 1 - 他のアプリケーションに属するコントロールを破棄しようとしました。

 

注意

_GUICtrlRichEdit_Createで作成されたリッチエディットコントロールのみに使用して下さい。

 

関連

_GUICtrlRichEdit_Create

 


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

Global $hRichEdit

Main()

Func Main()
    Local $hGui, $iMsg, $btnDoIt
    $hGui = GUICreate("Example (" & StringTrimRight(@ScriptName,4) &")", 320, 350, -1, -1)
    $hRichEdit = _GUICtrlRichEdit_Create($hGui, "This is a test.", 10, 10, 300, 220, _
            BitOR($ES_MULTILINE, $WS_VSCROLL, $ES_AUTOVSCROLL))
    $btnDoIt = GUICtrlCreateButton("Do it", 10, 260, 90, 25)

    GUISetState()

    While True
        $iMsg = GUIGetMsg()
        Select
            Case $iMsg = $GUI_EVENT_CLOSE
                Exit
            Case $iMsg = $btnDoIt
                _GUICtrlRichEdit_Destroy($hRichEdit)
        EndSelect
    WEnd
EndFunc   ;==>Main