リストに文字列を挿入します。
#Include <GuiListBox.au3>
_GUICtrlListBox_InsertString($hWnd, $sText[, $iIndex = -1])
パラメータ
$hWnd | コントロールのハンドル |
$sText | 挿入されるテキスト文字列 |
$iIndex | [オプション]文字列を挿入する位置のゼロ始まりのインデックスを指定します。 このパラメータが-1の場合、文字列はリストの末尾に追加されます。 |
返し値
成功: | アイテム位置のゼロ始まりのインデックス |
失敗: | -1 |
注意
$iIndexが-1の場合、文字列はリストの末尾に追加されます。
関連
_GUICtrlListBox_AddString, _GUICtrlListBox_DeleteString, _GUICtrlListBox_InitStorage
例
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
$Debug_LB = False ; ListBox関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用
_Main()
Func _Main()
Local $hListBox
; GUIを作成
GUICreate("List Box Insert String", 400, 296)
$hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($WS_BORDER, $LBS_NOTIFY, $LBS_DISABLENOSCROLL, $WS_HSCROLL))
GUISetState()
; 文字列を追加
_GUICtrlListBox_BeginUpdate($hListBox)
For $iI = 1 To 9
_GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1)))
Next
_GUICtrlListBox_InsertString($hListBox, "Let's add one really long line of text so that we can set the horizontal scroll bar and " & _
"show that, unless we dynamically update the scroll bar, it won't show the full line.", 4)
_GUICtrlListBox_UpdateHScroll($hListBox)
_GUICtrlListBox_EndUpdate($hListBox)
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main