函数参考


_GUICtrlRichEdit_GetVersion

获取富文本编辑控件的版本

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetVersion()

参数

None.

返回值

None.

注意/说明

包含在Windows版本中的富文本编辑控件的版本:
3.0 - Windows 2000, XP
3.1 - Windows Vista
4.0 - Windows XP SP1
4.1 - Windows Vista/Windows 7

相关

示例/演示


#include <GuiRichEdit.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

Global $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))
    GUISetState()

    _GUICtrlRichEdit_SetText($hRichEdit, "This is a test.")
    MsgBox(4096, "", _GUICtrlRichEdit_GetVersion())

    While True
        $iMsg = GUIGetMsg()
        Select
            Case $iMsg = $GUI_EVENT_CLOSE
                _GUICtrlRichEdit_Destroy($hRichEdit) ; 除非脚本崩溃才需要
;~              GUIDelete()     ; 同样行
                Exit
        EndSelect
    WEnd
EndFunc   ;==>Main