Function Reference

_GUICtrlRichEdit_GetCharPosFromXY

クライアント領域の指定位置から最も近い文字間位置を取得します。

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetCharPosFromXY($hWnd, $iX, $iY)

 

パラメータ

$hWnd コントロールのハンドル
$iX コントロール左端からの相対的な水平方向スクリーン座標
$iY コントロール上端からの相対的な垂直方向スクリーン座標

 

返し値

成功: 指定位置から最も近い文字の1始まりの文字インデックス
(指定位置がテキスト上だった場合、コントロール内の最後の文字のインデックスが返されます。)
失敗: 0を返し、@errorを設定します:
@error: 101 - $hWndがハンドルではありません。
102 - $iXが数値ではありません。
103 - $iYが数値ではありません。
-1 - ($iX,$iY)がクライアント領域外です。

 

注意

なし。

 

関連

_GUICtrlRichEdit_GetXYFromCharPos

 

こちらも参照

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

 


#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>

Opt('MustDeclareVars', 1)

Global $lblMsg, $hRichEdit

Main()

Func Main()
    Local $hGui, $iMsg, $ai, $btnNext, $iStep = 0
    $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)
    $btnNext = GUICtrlCreateButton("Next", 270, 310, 40, 30)
    GUISetState()

    _GuiCtrlRichEdit_AppendText($hRichEdit, @CR & "This is appended text.")

    While True
        $iMsg = GUIGetMsg()
        Select
            Case $iMsg = $GUI_EVENT_CLOSE
                GUIDelete()
                Exit
            Case $iMsg = $btnNext
                $iStep += 1
                Switch $iStep
                    Case 1
                        $ai = _GuiCtrlRichEdit_GetXYFromCharPos($hRichEdit, 20)
                        Report("1.The coordinates of inter-character position 20 are (" & $ai[0] & "," & $ai[1] & ")")
                    Case 2
                        Report("2.The inter-character position at or nearest coordinates (" & $ai[0] & "," & $ai[1] & ")" & @CR & _
                                "is " & _GuiCtrlRichEdit_GetCharPosFromXY($hRichEdit, $ai[0], $ai[1]))
                        GUICtrlSetState($btnNext, $GUI_DISABLE)
                EndSwitch
        EndSelect
    WEnd
EndFunc   ;==>Main

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