Function Reference

_GUICtrlEdit_AppendText

テキストを追加します。

#Include <GuiEdit.au3>
_GUICtrlEdit_AppendText($hWnd, $sText)

 

パラメータ

$hWnd コントロールのハンドル
$sText 追加する文字列

 

返し値

なし。

 

注意

なし。

 

関連

_GUICtrlEdit_SetText, _GUICtrlEdit_InsertText, _GUICtrlEdit_GetText

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiEdit.au3>
#include <GuiConstantsEx.au3>

Opt('MustDeclareVars', 1)

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

_Main()

Func _Main()
    Local $hEdit

    ; GUIを作成
    GUICreate("Edit Append Text", 400, 300)
    $hEdit = GUICtrlCreateEdit("This is a test" & @CRLF & "Another Line", 2, 2, 394, 268)
    GUISetState()

    _GUICtrlEdit_AppendText($hEdit, @CRLF & "Append to the end?")
   
    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main