OnMouseUp_Window
Delphi
property OnMouseUp_Window: TOnVideoMouseUpDown read FOnMouseUp_Window write FOnMouseUp_Window;
C++Builder
__property TOnVideoMouseUpDown OnMouseUp_Window = {read=FOnMouseUp_Window, write=FOnMouseUp_Window};
typedef void __fastcall (__closure *TOnVideoMouseUpDown)(System::TObject* Sender, System::LongInt VideoWindow, System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, System::LongInt X, System::LongInt Y);
C#
public event OnMouseUp_WindowEventHandler OnMouseUp_Window;
public delegate void OnMouseUp_WindowEventHandler(object sender, TOnVideoMouseUpDownEventArgs e);
VB.NET
Public Event OnMouseUp_Window As OnMouseUp_WindowEventHandler
Public Delegate Sub OnMouseUp_WindowEventHandler(sender As Object, e As TOnVideoMouseUpDownEventArgs)
C++/Qt
void SetOnMouseUp_Window (TOnMouseUp_WindowCb OnMouseUp_WindowCb);
typedef void CALLBACK TOnMouseUp_WindowCb (void *Object, void *Sender, int VideoWindow, TMouseButton Button, TMouseButton Shift, int X, int Y);
Occurs when the user releases a mouse button that was pressed with the mouse pointer over a component. Returns the coordinates of the video window at the cursor location.