CSGetMultiZoneClick Function
Description
Gets the state of the multi zone click mode of the Consoul window.
Multi zone click mode is the ability of the Consoul library to call back the host multiple times on one mouse click, if that click happens in an area where multiple zones overlap.
Syntax
VB/A 32bits
Private Declare Function CSGetMultiZoneClick Lib "consoul_010205_32.dll" ( _
ByVal hWnd As Long _
) As Integer
VB/A 64bits
Private Declare PtrSafe Function CSGetMultiZoneClick Lib "consoul_010205_64.dll" ( _
ByVal hWnd As LongPtr _
) As Integer
Return Value
The return value is 0 (zero) if the mode if OFF, 1 (one) if it is ON.
Parameters
hWnd
The window handle (HWND) of the Consoul window, as returned by CSCreateLogWindow.
Remarks
The multi zone click mode is OFF by default, as it's field of application is rather peculiar.
Last updated: May 13 2022.