Type | Description |
Use the Leave event to notify your application that the mouse leaves the container's client area. Use the MouseLeave event to notify your application that the mouse leaves the control's client area. Use the MouseMove event to notify your application that the mouse is moving over the control.
Syntax for Leave event, /NET version, on:
private void Leave(object sender) { } Private Sub Leave(ByVal sender As System.Object) Handles Leave End Sub |
private void Leave(object sender, EventArgs e) { } void OnLeave() { } void __fastcall Leave(TObject *Sender) { } procedure Leave(ASender: TObject; ); begin end; procedure Leave(sender: System.Object; e: System.EventArgs); begin end; begin event Leave() end event Leave Private Sub Leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Leave End Sub Private Sub Leave() End Sub Private Sub Leave() End Sub LPARAMETERS nop PROCEDURE OnLeave(oDialog) RETURN |
<SCRIPT EVENT="Leave()" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function Leave() End Function </SCRIPT> Procedure OnComLeave Forward Send OnComLeave End_Procedure METHOD OCX_Leave() CLASS MainDialog RETURN NIL void onEvent_Leave() { } function Leave as v () end function function nativeObject_Leave() return |