Click or drag to resize

PdfiumFPDFFunctionStitch_GetFunctionAt Method

Get the function at a given position.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static IntPtr FPDFFunctionStitch_GetFunctionAt(
	IntPtr function,
	int index
)

Parameters

function  IntPtr
The handle to the type 3 (Stitching) function.
index  Int32
An integer index that is greater than or equal to 0 and less than or equal to the value returned by FPDFFunctionStitch_GetFunctionsCount(IntPtr).

Return Value

IntPtr
The handle to the function at the specified index in the type 3 (Stitching) function.
Remarks
The function is a handle returned by these methods: FPDFFunction_CreateStitch(IntPtr, Int32, IntPtr, Single, Single, Single, Single), FPDFFunction_OpenHandle(IntPtr) and FPDFFunctionStitch_GetFunctionAt(IntPtr, Int32).
Note  Note
When an application is finished using the function handle returned by method, use the FPDFFunction_CloseHandle(IntPtr) function to close the handle.
See Also