函数参考


_GUICtrlSlider_GetNumTics

检索滑块的刻度数

#Include <GuiSlider.au3>
_GUICtrlSlider_GetNumTics($hWnd)

参数

$hWnd 控件句柄

返回值

成功: 如果没有设置刻度标志,返回开始和结束位置的两个刻度数.
如果设置了 $TBS_NOTICKS, 则返回 0.
否则,它取得范围之间最小和最大的差异,除以刻度间距频率,并增加 2.

注意/说明

None.

相关

_GUICtrlSlider_SetTicFreq

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiSlider.au3>

$Debug_S = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hSlider

    ; 创建 GUI
    GUICreate("Slider Get Num Tics", 400, 296)
    $hSlider = GUICtrlCreateSlider(2, 2, 396, 20, BitOR($TBS_TOOLTIPS, $TBS_AUTOTICKS, $TBS_ENABLESELRANGE))
    GUISetState()

    ; Get Num Tics
    MsgBox(4160, "信息", "Num Tics: " & _GUICtrlSlider_GetNumTics($hSlider))

    ; Set Tic Freq
    _GUICtrlSlider_SetTicFreq($hSlider, 1)

    ; Get Num Tics
    MsgBox(4160, "信息", "Num Tics: " & _GUICtrlSlider_GetNumTics($hSlider))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main