AutomationPointerDown Event (original) (raw)
Summary
Event that triggers when the pointer (mouse or touch) is down or tapped on the control.
Syntax
def AutomationPointerDown(sender,e): # sender: IAnnAutomationControl e: AnnPointerEventArgs
Event Data
The event handler receives an argument of type AnnPointerEventArgs containing data related to this event. The following AnnPointerEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | Gets the mouse button that was pressed. |
Location | The location of the mouse or touch down in image coordinates. To convert to container (annotation) coordinates, use AnnContainerMapper. |