Function Reference

_GUICtrlEdit_CharFromPos

クライアント領域の指定された点に最も近い文字の情報を取得します。

#Include <GuiEdit.au3>
_GUICtrlEdit_CharFromPos($hWnd, $iX, $iY)

 

パラメータ

$hWnd コントロールのハンドル
$iX 水平位置
$iY 垂直位置

 

返し値

成功: 次のフォーマットの配列:
    [0] - 指定された点に最も近い文字のゼロ始まりのインデックス
    [1] - 文字がある行のゼロ始まりのインデックス

 

注意

なし。

 

関連

 


#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 $aCharPos[2], $hEdit

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

    _GUICtrlEdit_AppendText($hEdit, @CRLF & "Append to the end?")
   
    $aCharPos = _GUICtrlEdit_CharFromPos($hEdit, 100, 20)
    MsgBox(4160, "Information", StringFormat("Char Nearsest Point: [%2d]", $aCharPos[0]) & @LF & _
            StringFormat("Line Nearest Point: [%2d]", $aCharPos[1]))
   
    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main