ShouldResentMouseEvent Method
In This Topic
Get a value that indicates whether there is a need to resend the mouse event when the mouse button is pressed down on the component.
Syntax
'Declaration
Function ShouldResentMouseEvent( _
ByVal As Point _
) As Boolean
'Usage
Dim instance As IEditorSupport
Dim location As Point
Dim value As Boolean
value = instance.ShouldResentMouseEvent(location)
bool ShouldResentMouseEvent(
Point
)
Parameters
- location
- Mouse down position.
Return Value
true
if the mouse event should be resent when there is a mouse down on the component; otherwise, false
.
See Also