コントロール内の全テキストを取得します。
#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetText($hWnd [, $fCrToCrLf = False [, $iCodePage = 0 [, $sReplChar = ""]]])
パラメータ
$hWnd | コントロールのハンドル |
$fCrToCrLf | [オプション]各CRをCrLfに変換 True - 変換します。 変換しません(デフォルト)。 |
$iCodePage | [オプション] 変換で使用されるコードページ デフォルト: システムのデフォルトを使用 ANSIの場合はCP_ACP、Unicodeの場合には1200 |
$sReplChar | [オプション] $iCodePageが1200でなくワイド文字を指定されたコードページで表せない場合に使用される文字 |
返し値
成功: | 目的のテキスト |
失敗: | ""を返し、@errorを設定します: |
@error: | 101 - $hWndがハンドルではありません。 |
102 - $fCrToCrLf はTrueまたはFalseでなければなりません。 | |
103 - $iCodePageが数値ではありません。 | |
700 - 内部エラー |
注意
$sReplCharが設定されている場合、成功時に@extendedにこの文字が使用されたかどうかが格納されます。
関連
_GUICtrlRichEdit_SetText, _GUICtrlRichEdit_AppendText, _GUICtrlRichEdit_InsertText, _GUICtrlRichEdit_IsModified
こちらも参照
MSDNライブラリでEM_GETTEXTEXを検索して下さい。
例
#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 $lblMsg, $hRichEdit
Main()
Func Main()
Local $hGui, $hRichEdit, $iMsg
$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))
$lblMsg = GUICtrlCreateLabel("", 10, 235, 300, 60)
GUISetState()
_GuiCtrlRichEdit_AppendText($hRichEdit, @CR & "This is appended text.")
Report("Text Appended: "& @CR & @CR & _GUICtrlRichEdit_GetText($hRichEdit))
While True
$iMsg = GUIGetMsg()
Select
Case $iMsg = $GUI_EVENT_CLOSE
GUIDelete()
Exit
EndSelect
WEnd
EndFunc ;==>Main
Func Report($sMsg)
GUICtrlSetData($lblMsg, $sMsg)
EndFunc ;==>Report