PDFViewCtrlGetAnnotationListAt Method |
Gets the list of annotations at line (x1, y1, x2, y2) expressed in screen coordinates
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public IVector<IAnnot> GetAnnotationListAt(
int x1,
int y1,
int x2,
int y2
)
Public Function GetAnnotationListAt (
x1 As Integer,
y1 As Integer,
x2 As Integer,
y2 As Integer
) As IVector(Of IAnnot)
public:
virtual IVector<IAnnot^>^ GetAnnotationListAt(
[InAttribute] int x1,
[InAttribute] int y1,
[InAttribute] int x2,
[InAttribute] int y2
) sealed
function GetAnnotationListAt(x1, y1, x2, y2);
Parameters
- x1
- Type: SystemInt32
x coordinate of the screen point at one of the end points of the line
- y1
- Type: SystemInt32
y coordinate of the screen point at one of the end points of the line
- x2
- Type: SystemInt32
x coordinate of the screen point at another end point of the line
- y2
- Type: SystemInt32
y coordinate of the screen point at another end point of the line
Return Value
Type:
IVectorIAnnotthe list of annotations at line (x1, y1, x2, y2).
See Also