Description
-
Fires when user right-click on wodTelnetDLX window.
Syntax
-
Private Sub
object_RightClick(Row, Column,
ShowMenu)
The RightClick Event syntax has these parts:
| object |
A wodTelnetDLX
object. |
| Row |
An Integer value.
Holds row number where user clicked. |
| Column |
An Integer value.
Holds column number where user clicked. |
| ShowMenu |
A Boolean value. When
set to False context menu is not shown (defaults
to True). |
Remarks
-
This event is only available in OCX (GUI)
version of the component.
RightClick event is fired when user clicks inside
wodTelnetDLX, on specific row and column. You can set
ShowMenu argument to False,
in which case context menu will not be shown. You can,
instead, do a quick paste of current selection (which you
can retrieve using SelectedText
property).
|