Function Reference

_GUICtrlTab_GetRowCount

現在のタブ列の数を取得します。

#Include <GuiTab.au3>
_GUICtrlTab_GetRowCount($hWnd)

 

パラメータ

$hWnd コントロールのハンドル

 

返し値

成功: タブ列の数

 

注意

$TCS_MULTILINEスタイルの設定されているタブコントロールのみ複数のタブ列を持つことができます。

 

関連

 


#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiTab.au3>

Opt('MustDeclareVars', 1)

$Debug_TAB = False ; 関数に渡されるClassNameを調べる。動作を確認するにはTrueを設定し、他のコントロールのハンドルを使用

_Main()

Func _Main()
    Local $hTab

    ; GUIを作成
    GUICreate("Tab Control Get Row Count", 400, 300)
    $hTab = GUICtrlCreateTab(2, 2, 396, 296, $TCS_MULTILINE)
    GUISetState()

    ; タブを追加
    For $x = 0 To 10
        _GUICtrlTab_InsertItem($hTab, $x, "Tab " & $x + 1)
    Next
   
    ; 列数を取得
    MsgBox(4160, "Information", "Row count: " & _GUICtrlTab_GetRowCount($hTab))

    ; ユーザーが終了するまでループ
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main