 | PdfiumFPDFLink_GetQuadPoints Method |
Get the quadrilateral from link annotation at the specified index.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFLink_GetQuadPoints(
IntPtr link_annot,
int quadIndex,
out FS_QUADPOINTSF quadPoints
)
Public Shared Function FPDFLink_GetQuadPoints (
link_annot As IntPtr,
quadIndex As Integer,
<OutAttribute> ByRef quadPoints As FS_QUADPOINTSF
) As Boolean
public:
static bool FPDFLink_GetQuadPoints(
IntPtr link_annot,
int quadIndex,
[OutAttribute] FS_QUADPOINTSF% quadPoints
)
static member FPDFLink_GetQuadPoints :
link_annot : IntPtr *
quadIndex : int *
quadPoints : FS_QUADPOINTSF byref -> bool
public static boolean FPDFLink_GetQuadPoints(
IntPtr link_annot,
int quadIndex,
/** @attribute OutAttribute */ /** @ref */FS_QUADPOINTSF quadPoints
)
Patagames.Pdf.Pdfium.FPDFLink_GetQuadPoints = function(link_annot, quadIndex, quadPoints);
Parameters
- link_annot IntPtr
- Handle to the link annotation received by FPDFLink_Enumerate(IntPtr, Int32, IntPtr) function.
- quadIndex Int32
- The index of the quadrilateral.
- quadPoints FS_QUADPOINTSF
- Receive the quadrilateral.
Return Value
BooleanTrue if succeed, else False
See Also