函数参考


_GUICtrlSlider_GetChannelRect

检索滑块通道矩形边界的大小和位置,返回数据数组.

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

参数

$hWnd 控件句柄

返回值

成功: 返回格式如下的数组
[0] - 矩形的左上角 X 坐标
[1] - 矩形的左上角 Y 坐标
[2] - 矩形的右下角 X 坐标
[3] - 矩形的右下角 Y 坐标

注意/说明

None.

相关

_GUICtrlSlider_GetChannelRectEx

示例/演示


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

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

_Main()

Func _Main()
    Local $aRect, $hSlider

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

    ; Get Channel Rect
    $aRect = _GUICtrlSlider_GetChannelRect($hSlider)

    MsgBox(4160, "信息", StringFormat("[%d][%d][%d][%d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))

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