コントロールがUnicodeを使用しているかどうかを取得します。
#Include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_GetUnicode($hWnd)
パラメータ
$hWnd | コントロールのハンドル |
返し値
True: Unicodeを使用
注意
なし。
関連
_GUICtrlComboBoxEx_SetUnicode
例
#include <GuiComboBoxEx.au3>
#include <GuiConstantsEx.au3>
Opt('MustDeclareVars', 1)
$Debug_CB = False ; ComboBox/ComboBoxEx関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用
_Main()
Func _Main()
Local $hGUI, $hCombo
; GUIを作成
$hGUI = GUICreate("ComboBoxEx Get/Set Unicode", 400, 300)
$hCombo = _GUICtrlComboBoxEx_Create($hGUI, "", 2, 2, 394, 100, $CBS_SIMPLE)
GUISetState()
_GUICtrlComboBoxEx_InitStorage($hCombo, 150, 300)
_GUICtrlComboBoxEx_BeginUpdate($hCombo)
For $x = 0 To 149
_GUICtrlComboBoxEx_AddString($hCombo, StringFormat("%03d : Random string", Random(1, 100, 1)))
Next
_GUICtrlComboBoxEx_EndUpdate($hCombo)
;Unicodeを設定/取得
MsgBox(4160, "Information", "Set Unicode: " & _GUICtrlComboBoxEx_SetUnicode($hCombo, False))
MsgBox(4160, "Information", "Get Unicode: " & _GUICtrlComboBoxEx_GetUnicode($hCombo))
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main