MouseMonitorSuppressMouseButtonUpEventWhenDoubleClick Property
** ONLY FOR TESTING PURPOSES **
Gets or sets a value indicating whether to suppress the last
MouseUp event of when a double-click occurs.
If this value is set to
, the application will send the events in this order for a Double-Click:
MouseDown,
MouseUp,
MouseDown,
MouseDoubleClick
If this value is set to
, the application will send the events in this order for a Double-Click:
MouseDown,
MouseUp,
MouseDown,
MouseUp,
MouseDoubleClick
Namespace: DevCase.Core.IO.Devices.InputAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public bool SuppressMouseButtonUpEventWhenDoubleClick { get; set; }
Public Property SuppressMouseButtonUpEventWhenDoubleClick As Boolean
Get
Set
Dim instance As MouseMonitor
Dim value As Boolean
value = instance.SuppressMouseButtonUpEventWhenDoubleClick
instance.SuppressMouseButtonUpEventWhenDoubleClick = value
public:
property bool SuppressMouseButtonUpEventWhenDoubleClick {
bool get ();
void set (bool value);
}
member SuppressMouseButtonUpEventWhenDoubleClick : bool with get, set
No code example is currently available or this language may not be supported.
Property Value
Boolean if MouseUp event is suppressed;
otherwise.