Function Reference

_GUICtrlRichEdit_GetTextLength

コントロール内のテキスト全体の長さを取得します。

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetTextLength($hWnd [, $fExact = True [, $fChars = False]])

 

パラメータ

$hWnd コントロールのハンドル
$fExact [オプション]
True - 正確な長さを返します。
False - 返し値がコントロール内の文字数の場合のみ使用できます(より高速)。
デフォルト: 正確な長さ
$fChars [オプション]
True - 文字数単位で長さを返します。
False - バイト単位で長さを返します。
Default: バイト

 

返し値

成功: バイト単位、または文字数単位での長さ
失敗: 0を返し、@errorを設定します。
@error: 101 - $hWndがハンドルではありません。
102 - $fExactはTrueまたはFalseである必要があります。
103 - $fCharsはTrueまたはFalseである必要があります。

 

注意

なし。

 

関連

 

こちらも参照

MSDNライブラリでEM_GETTEXTLENGTHEXを検索して下さい。

 


#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, $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("There are " & _GUICtrlRichEdit_GetTextLength($hRichEdit, True, True) & _
            " characters in the control")

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

Func Report($sMsg)
    GUICtrlSetData($lblMsg, $sMsg)
EndFunc   ;==>Report