LastMouseEvent

Returns an Area object that contains the row, column and character selected. Only left mouse clicks are captured that move the cursor or select a Hot Spot.

Parameters
None.
Returns
An Area object handle.
Example
Sub Main

set System = CreateObject("BZWhll.WhllObj")
set Session = System.ActiveSession
set Screen = Session.Screen

set x = Screen.LastMouseEvent

MsgBox x.Top & ", " & x.Left & " = " & x.Value2

End Sub