Function Reference

_GUICtrlRichEdit_GetVersion

リッチエディットのヴァージョンを取得します。

#Include <GuiRichEdit.au3>
_GUICtrlRichEdit_GetVersion()

 

パラメータ

なし。

 

返し値

なし。

 

注意

各Windowsのバージョンに含まれるリッチエディットのバージョンは以下の通りです:
3.0 - Windows 2000, XP
3.1 - Windows Vista
4.0 - Windows XP SP1
4.1 - Windows Vista

 

関連

 


#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 $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(0, "", _GuiCtrlRichEdit_GetVersion())

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