Skip to content

PDFVisualAnnotationClickEventArgs

Namespace: O2S.Components.PDF4NET.View

Defines the event arguments for and events.

public class PDFVisualAnnotationClickEventArgs : PDFVisualAnnotationEventArgs

Inheritance ObjectEventArgsPDFVisualAnnotationEventArgsPDFVisualAnnotationClickEventArgs

Properties

Button

Gets the mouse button the has been clicked.

public MouseButton Button { get; }

Property Value

MouseButton
The button of the mouse that has been clicked.


Location

Gets the location of the mouse during the generating mouse event.

public Point Location { get; }

Property Value

Point
A that contains the x and y mouse coordinates, in pixels, relative to the upper-left corner of the control.


PageStandardPoint

Gets the page standard point.

public PDFPoint PageStandardPoint { get; }

Property Value

PDFPoint
The point of the page where the mouse was clicked in page standard coordinates.

Remarks

The point on the page is given in standard PDF coordinates. The values for (x,y) are PDF points.


PageVisualPoint

Gets the page visual point.

public PDFPoint PageVisualPoint { get; }

Property Value

PDFPoint
The point on the page where the mouse was clicked in page visual coordinates.

Remarks

The point on the page is relative to page's top left visible corner. The values for (x,y) are PDF points.


VisualAnnotation

Gets the annotation.

public PDFVisualAnnotation VisualAnnotation { get; }

Property Value

PDFVisualAnnotation
The annotation that generated the event.