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
Value
Name | Type | Description |
---|---|---|
return | The number of clicks which have occurred since the initial click within the standard 'click distance' from the original point. |