TheClickCount
Type
expression
Summary
Determines the number of successive clicks within the click distance.
Syntax
the ( current ) click count
Description
Determines the number of successive clicks within the click distance.
Examples
variable tClickCount as integer
put the click count into tClickCount
if tClickCount is 1 then
// do single click action
else if tClickCount is 2 then
// do double click action
end if