移动插入点到字符区间位置
#include <GuiRichEdit.au3>
_GUICtrlRichEdit_GotoCharPos($hWnd, $iCharPos)
$hWnd | 控件句柄 |
$iCharPos | 字符区间位置 特殊值: -1 - 文本结束 |
成功: | 返回 True |
失败: | 返回 False 并设置@error |
@error: | 101 - $hWnd 参数值不是句柄 |
102 - $iCharPos 既不是正数或零, 也不是 -1 |
在MSDN中搜索
#include <GuiRichEdit.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Main()
Func Main()
Local $hGui, $iMsg, $hRichEdit
$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))
GUISetState()
_GUICtrlRichEdit_SetText($hRichEdit, "This is a test.")
_GUICtrlRichEdit_GotoCharPos($hRichEdit, 8)
While True
$iMsg = GUIGetMsg()
Select
Case $iMsg = $GUI_EVENT_CLOSE
_GUICtrlRichEdit_Destroy($hRichEdit) ; 除非脚本崩溃才需要
;~ GUIDelete() ; 同样行
Exit
EndSelect
WEnd
EndFunc ;==>Main