 | PdfiumFPDFPath_AllocPointCount Method |
Allocates the buffer for a given number of points.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPath_AllocPointCount(
IntPtr path,
int count
)
Public Shared Sub FPDFPath_AllocPointCount (
path As IntPtr,
count As Integer
)
public:
static void FPDFPath_AllocPointCount(
IntPtr path,
int count
)
static member FPDFPath_AllocPointCount :
path : IntPtr *
count : int -> unit
public static void FPDFPath_AllocPointCount(
IntPtr path,
int count
)
Patagames.Pdf.Pdfium.FPDFPath_AllocPointCount = function(path, count);
Parameters
- path IntPtr
- Handle to the path returned by FPDFPath_Create or FPDFPathObj_GetPath(IntPtr).
- count Int32
- Number of points
RemarksIf the existing buffer is smaller than necessary, a new one is created, and all existing points are copied to it. Otherwise do nothing.
See Also