|
ExifViewer Events
The events of the ExifViewer interface are listed below.
Click
|
Occur when press and then release a mouse button over the preview window. |
DblClick
|
Occur when press and then release a mouse button twice in quick succession over the preview window. |
MouseDown
|
Occur when the mouse pointer is over the preview window and a mouse button is pressed. |
MouseMove
|
Occurs when the mouse pointer is moved over the preview window. |
MouseUp
|
Occur when the mouse pointer is over the preview window and a mouse button is released. |
Click Event
Occur when press and then release a mouse button over the preview window.
[Visual Basic]
Event Click As Click
DblClick Event
Occur when press and then release a mouse button twice in quick succession over the preview window.
[Visual Basic]
Event DblClick As DblClick
MouseDown Event
Occur when the mouse pointer is over the preview window and a mouse button is pressed.
[Visual Basic]
Event MouseDown As MouseDown
MouseMove Event
Occurs when the mouse pointer is moved over the preview window.
[Visual Basic]
Event MouseMove As MouseMove
MouseUp Event
Occur when the mouse pointer is over the preview window and a mouse button is released.
[Visual Basic]
Event MouseUp As MouseUp
|